File indexing completed on 2024-04-28 05:38:25

0001 /*
0002     %4
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef CLAZY_%1_H
0008 #define CLAZY_%1_H
0009 
0010 #include "checkbase.h"
0011 
0012 
0013 /**
0014  * See README-%3.md for more info.
0015  */
0016 class %2 : public CheckBase
0017 {
0018 public:
0019     explicit %2(const std::string &name, ClazyContext *context);
0020     void VisitDecl(clang::Decl *) override;
0021     void VisitStmt(clang::Stmt *) override;
0022 private:
0023 };
0024 
0025 #endif