From 7ab44ce59c61564533938d330b9ac629da4a8961 Mon Sep 17 00:00:00 2001 From: Jan Travnicek <Jan.Travnicek@fit.cvut.cz> Date: Tue, 9 Aug 2016 13:25:12 +0200 Subject: [PATCH] fix header guards and parameter info --- aaccess2/src/AutomatonAccess.h | 6 +++--- aaccess2/src/ExceptionAccess.h | 6 +++--- aaccess2/src/GrammarAccess.h | 6 +++--- aaccess2/src/RegExpAccess.h | 6 +++--- aaccess2/src/StringAccess.h | 6 +++--- aaccess2/src/TreeAccess.h | 6 +++--- aaccess2/src/aaccess.cpp | 12 ++++++------ 7 files changed, 24 insertions(+), 24 deletions(-) diff --git a/aaccess2/src/AutomatonAccess.h b/aaccess2/src/AutomatonAccess.h index 63566ba74e..94e50cc8f6 100644 --- a/aaccess2/src/AutomatonAccess.h +++ b/aaccess2/src/AutomatonAccess.h @@ -5,8 +5,8 @@ * Author: Jan Travnicek */ -#ifndef AUTOMATA_STAT_H_ -#define AUTOMATA_STAT_H_ +#ifndef AUTOMATA_ACCESS_H_ +#define AUTOMATA_ACCESS_H_ #include <core/multipleDispatch.hpp> @@ -30,4 +30,4 @@ public: static void access ( const automaton::NPDA & automaton, const std::set < AutomatonSettings::Settings > & settings ); }; -#endif /* AUTOMATA_STAT_H_ */ +#endif /* AUTOMATA_ACCESS_H_ */ diff --git a/aaccess2/src/ExceptionAccess.h b/aaccess2/src/ExceptionAccess.h index 191e8a75ee..c317018a33 100644 --- a/aaccess2/src/ExceptionAccess.h +++ b/aaccess2/src/ExceptionAccess.h @@ -5,8 +5,8 @@ * Author: Jan Travnicek */ -#ifndef EXCEPTION_STAT_H_ -#define EXCEPTION_STAT_H_ +#ifndef EXCEPTION_ACCESS_H_ +#define EXCEPTION_ACCESS_H_ #include <exception/CommonException.h> @@ -18,4 +18,4 @@ public: static void access ( const exception::CommonException & exception, const std::set < ExceptionSettings::Settings > & settings ); }; -#endif /* EXCEPTION_STAT_H_ */ +#endif /* EXCEPTION_ACCESS_H_ */ diff --git a/aaccess2/src/GrammarAccess.h b/aaccess2/src/GrammarAccess.h index 96c2b54329..446b68c84b 100644 --- a/aaccess2/src/GrammarAccess.h +++ b/aaccess2/src/GrammarAccess.h @@ -5,8 +5,8 @@ * Author: Jan Travnicek */ -#ifndef GRAMMAR_STAT_H_ -#define GRAMMAR_STAT_H_ +#ifndef GRAMMAR_ACCESS_H_ +#define GRAMMAR_ACCESS_H_ #include <core/multipleDispatch.hpp> @@ -24,4 +24,4 @@ public: static void access ( const grammar::RightLG & grammar, const std::set < GrammarSettings::Settings > & settings ); }; -#endif /* GRAMMAR_STAT_H_ */ +#endif /* GRAMMAR_ACCESS_H_ */ diff --git a/aaccess2/src/RegExpAccess.h b/aaccess2/src/RegExpAccess.h index 44fafb9e85..0be59953bb 100644 --- a/aaccess2/src/RegExpAccess.h +++ b/aaccess2/src/RegExpAccess.h @@ -5,8 +5,8 @@ * Author: Jan Travnicek */ -#ifndef REG_EXP_STAT_H_ -#define REG_EXP_STAT_H_ +#ifndef REG_EXP_ACCESS_H_ +#define REG_EXP_ACCESS_H_ #include <core/multipleDispatch.hpp> @@ -24,4 +24,4 @@ public: static void access ( const regexp::FormalRegExp & regexp, const std::set < RegExpSettings::Settings > & settings ); }; -#endif /* REG_EXP_STAT_H_ */ +#endif /* REG_EXP_ACCESS_H_ */ diff --git a/aaccess2/src/StringAccess.h b/aaccess2/src/StringAccess.h index e5fa9cab38..ecced5ee2f 100644 --- a/aaccess2/src/StringAccess.h +++ b/aaccess2/src/StringAccess.h @@ -5,8 +5,8 @@ * Author: Jan Travnicek */ -#ifndef STRING_STAT_H_ -#define STRING_STAT_H_ +#ifndef STRING_ACCESS_H_ +#define STRING_ACCESS_H_ #include <core/multipleDispatch.hpp> @@ -24,4 +24,4 @@ public: static void access ( const string::CyclicString & string, const std::set < StringSettings::Settings > & settings ); }; -#endif /* STRING_STAT_H_ */ +#endif /* STRING_ACCESS_H_ */ diff --git a/aaccess2/src/TreeAccess.h b/aaccess2/src/TreeAccess.h index e012c26666..7832e94c77 100644 --- a/aaccess2/src/TreeAccess.h +++ b/aaccess2/src/TreeAccess.h @@ -5,8 +5,8 @@ * Author: Jan Travnicek */ -#ifndef TREE_STAT_H_ -#define TREE_STAT_H_ +#ifndef TREE_ACCESS_H_ +#define TREE_ACCESS_H_ #include <core/multipleDispatch.hpp> @@ -26,4 +26,4 @@ public: static void access ( const tree::UnrankedTree & tree, const std::set < TreeSettings::Settings > & settings ); }; -#endif /* TREE_STAT_H_ */ +#endif /* TREE_ACCESS_H_ */ diff --git a/aaccess2/src/aaccess.cpp b/aaccess2/src/aaccess.cpp index d8c205e7fd..81449e1b75 100644 --- a/aaccess2/src/aaccess.cpp +++ b/aaccess2/src/aaccess.cpp @@ -35,7 +35,7 @@ int main ( int argc, char * argv[] ) { TCLAP::ValuesConstraint < std::string > automatonPrintingOptionsVals ( automatonSettings ); - TCLAP::MultiArg < std::string > automaton ( "", "automaton", "Display stats of automata", false, & automatonPrintingOptionsVals ); + TCLAP::MultiArg < std::string > automaton ( "", "automaton", "Access components of automata", false, & automatonPrintingOptionsVals ); // ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- @@ -45,7 +45,7 @@ int main ( int argc, char * argv[] ) { TCLAP::ValuesConstraint < std::string > grammarPrintingOptionsVals ( grammarSettings ); - TCLAP::MultiArg < std::string > grammar ( "", "grammar", "Display stats of grammars", false, & grammarPrintingOptionsVals ); + TCLAP::MultiArg < std::string > grammar ( "", "grammar", "Access components of grammars", false, & grammarPrintingOptionsVals ); // ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- @@ -55,7 +55,7 @@ int main ( int argc, char * argv[] ) { TCLAP::ValuesConstraint < std::string > regexpPrintingOptionsVals ( regexpSettings ); - TCLAP::MultiArg < std::string > regexp ( "", "regexp", "Display stats of regexps", false, & regexpPrintingOptionsVals ); + TCLAP::MultiArg < std::string > regexp ( "", "regexp", "Access components of regexps", false, & regexpPrintingOptionsVals ); // ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- @@ -65,7 +65,7 @@ int main ( int argc, char * argv[] ) { TCLAP::ValuesConstraint < std::string > exceptionPrintingOptionsVals ( exceptionSettings ); - TCLAP::MultiArg < std::string > exception ( "", "exception", "Display stats of exceptions", false, & exceptionPrintingOptionsVals ); + TCLAP::MultiArg < std::string > exception ( "", "exception", "Access components of exceptions", false, & exceptionPrintingOptionsVals ); // ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- @@ -75,7 +75,7 @@ int main ( int argc, char * argv[] ) { TCLAP::ValuesConstraint < std::string > stringPrintingOptionsVals ( stringSettings ); - TCLAP::MultiArg < std::string > string ( "", "string", "Display stats of strings", false, & stringPrintingOptionsVals ); + TCLAP::MultiArg < std::string > string ( "", "string", "Access components of strings", false, & stringPrintingOptionsVals ); // ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- @@ -85,7 +85,7 @@ int main ( int argc, char * argv[] ) { TCLAP::ValuesConstraint < std::string > treePrintingOptionsVals ( treeSettings ); - TCLAP::MultiArg < std::string > tree ( "", "tree", "Display stats of trees", false, & treePrintingOptionsVals ); + TCLAP::MultiArg < std::string > tree ( "", "tree", "Access components of trees", false, & treePrintingOptionsVals ); // ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- -- GitLab