diff --git a/aaccess2/src/AutomatonAccess.h b/aaccess2/src/AutomatonAccess.h index 63566ba74e4a956b0e62aaccef162a93d6745881..94e50cc8f6175695cc02da2216f14e1db161b45b 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 191e8a75ee2f85422b4217bebcc740a12b782aa8..c317018a33e589cff9c973820b0d3bc78895aba5 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 96c2b54329119875d2aa2701a82c5c0f6b0aa005..446b68c84bc16d8538d8f1daa8162f685eaa5c9f 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 44fafb9e8566eaa1671f05828ccb82c2e9d17372..0be59953bbfa0926a3e83b39c2d25a8f422bc226 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 e5fa9cab38cf8b4d933f4572757db7035135a996..ecced5ee2f91977524dcb6a735c12149562723f2 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 e012c26666bdd1b9aeb9c2c0d59847137d7c8a59..7832e94c77aed94f6f820ba695bb064d76c9c77e 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 d8c205e7fd9182d3b63d53cd79ff0360c3d17133..81449e1b75f9ce87de03bd32ce4cc3813ad43948 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 ); // ----------------------------------------------------------------------------------------------------------------------------------------------------------------------