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

0001 /*
0002     %3
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "%1"
0008 #include "Utils.h"
0009 #include "HierarchyUtils.h"
0010 #include "QtUtils.h"
0011 #include "TypeUtils.h"
0012 
0013 #include <clang/AST/AST.h>
0014 
0015 using namespace clang;
0016 using namespace std;
0017 
0018 
0019 %2::%2(const std::string &name, ClazyContext *context)
0020     : CheckBase(name, context)
0021 {
0022 }
0023 
0024 void %2::VisitDecl(clang::Decl *decl)
0025 {
0026 }
0027 
0028 void %2::VisitStmt(clang::Stmt *stmt)
0029 {
0030 }