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

0001 /*
0002     SPDX-FileCopyrightText: 2015 Sergio Martins <smartins@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef CLANG_LAZY_RULE_OF_THREE_H
0008 #define CLANG_LAZY_RULE_OF_THREE_H
0009 
0010 #include "checks/ruleofbase.h"
0011 
0012 #include <string>
0013 
0014 class ClazyContext;
0015 
0016 namespace clang
0017 {
0018 class Decl;
0019 }
0020 
0021 /**
0022  * Finds classes or structs which violate the rule of three.
0023  * If a class has dtor, copy-dtor or copy-assign operator it should have all three.
0024  *
0025  * See README-rule-of-three for more information
0026  */
0027 class RuleOfThree : public RuleOfBase
0028 {
0029 public:
0030     explicit RuleOfThree(const std::string &name, ClazyContext *context);
0031     void VisitDecl(clang::Decl *d) override;
0032 
0033 private:
0034     bool shouldIgnoreType(const std::string &className) const;
0035 };
0036 
0037 #endif