clang-tools
3.8.0
|
Abstract interface for retrieving various ClangTidy options. More...
#include <ClangTidyOptions.h>
Public Member Functions | |
virtual | ~ClangTidyOptionsProvider () |
virtual const ClangTidyGlobalOptions & | getGlobalOptions ()=0 |
Returns global options, which are independent of the file. More... | |
virtual ClangTidyOptions | getOptions (llvm::StringRef FileName)=0 |
Returns options applying to a specific translation unit with the specified FileName . More... | |
Abstract interface for retrieving various ClangTidy options.
Definition at line 97 of file ClangTidyOptions.h.
|
inlinevirtual |
Definition at line 99 of file ClangTidyOptions.h.
|
pure virtual |
Returns global options, which are independent of the file.
Implemented in clang::tidy::DefaultOptionsProvider.
|
pure virtual |
Returns options applying to a specific translation unit with the specified FileName
.
Implemented in clang::tidy::FileOptionsProvider, and clang::tidy::DefaultOptionsProvider.