1 //===--- NonPrivateMemberVariablesInClassesCheck.h - clang-tidy -*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MISC_NONPRIVATEMEMBERVARIABLESINCLASSESCHECK_H
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MISC_NONPRIVATEMEMBERVARIABLESINCLASSESCHECK_H
12 #include "../ClangTidyCheck.h"
18 /// This checker finds classes that not only contain the data
19 /// (non-static member variables), but also have logic (non-static member
20 /// functions), and diagnoses all member variables that have any other scope
21 /// other than `private`. They should be made `private`, and manipulated
22 /// exclusively via the member functions.
24 /// Optionally, classes with all member variables being `public` could be
25 /// ignored and optionally all `public` member variables could be ignored.
27 /// For the user-facing documentation see:
28 /// http://clang.llvm.org/extra/clang-tidy/checks/misc/non-private-member-variables-in-classes.html
29 class NonPrivateMemberVariablesInClassesCheck
: public ClangTidyCheck
{
31 NonPrivateMemberVariablesInClassesCheck(StringRef Name
,
32 ClangTidyContext
*Context
);
33 bool isLanguageVersionSupported(const LangOptions
&LangOpts
) const override
{
34 return LangOpts
.CPlusPlus
;
36 void storeOptions(ClangTidyOptions::OptionMap
&Opts
) override
;
37 void registerMatchers(ast_matchers::MatchFinder
*Finder
) override
;
38 void check(const ast_matchers::MatchFinder::MatchResult
&Result
) override
;
41 const bool IgnoreClassesWithAllMemberVariablesBeingPublic
;
42 const bool IgnorePublicMemberVariables
;
49 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MISC_NONPRIVATEMEMBERVARIABLESINCLASSESCHECK_H