Go to the source code of this file.
Classes | |
class | check_include_guards.GuardValidator |
Namespaces | |
check_include_guards | |
Functions | |
def | check_include_guards.build_valid_guard (fpath) |
def | check_include_guards.load (fpath) |
def | check_include_guards.save (fpath, contents) |
Variables | |
check_include_guards.action | |
check_include_guards.argp = argparse.ArgumentParser(description='include guard checker') | |
check_include_guards.args = argp.parse_args() | |
check_include_guards.default | |
check_include_guards.False | |
string | check_include_guards.FILE_LIST_COMMAND = ' | '.join((git_command, grep_filter)) |
list | check_include_guards.filename_list = [] |
string | check_include_guards.git_command = 'git diff --name-only HEAD' |
string | check_include_guards.grep_filter = r"grep -E '^(include|src/core)/.*\.h$'" |
bool | check_include_guards.ok = True |
check_include_guards.ROOT = os.path.abspath(os.path.join(os.path.dirname(sys.argv[0]), '../..')) | |
check_include_guards.validator = GuardValidator() | |