Skip to content
Snippets Groups Projects
Commit a0e9fa6f authored by Jan Trávníček's avatar Jan Trávníček
Browse files

remove not needed header files

parent ad218dd5
No related branches found
No related tags found
No related merge requests found
/*
* ContainerClasses.h
*
* Created on: Jun 19, 2014
* Author: Jan Travnicek
*/
#ifndef CONTAINER_CLASSES_H_
#define CONTAINER_CLASSES_H_
#include "ObjectsDeque.h"
#include "ObjectsList.h"
#include "ObjectsMap.h"
#include "ObjectsPair.h"
#include "ObjectsSet.h"
#include "ObjectsTree.h"
#include "ObjectsVector.h"
#endif /* CONTAINER_CLASSES_H_ */
/*
* PrimitiveClasses.h
*
* Created on: Jun 19, 2014
* Author: Jan Travnicek
*/
#ifndef PRIMITIVE_CLASSES_H_
#define PRIMITIVE_CLASSES_H_
#include "String.h"
#include "Integer.h"
#include "Character.h"
#include "Unsigned.h"
#include "Bool.h"
#endif /* PRIMITIVE_CLASSES_H_ */
/*
* AutomatonClasses.h
*
* Created on: Jun 19, 2014
* Author: Jan Travnicek
*/
#ifndef AUTOMATON_CLASSES_H_
#define AUTOMATON_CLASSES_H_
#include "FSM/EpsilonNFA.h"
#include "FSM/NFA.h"
#include "FSM/MultiInitialStateNFA.h"
#include "FSM/DFA.h"
#include "FSM/CompactNFA.h"
#include "FSM/ExtendedNFA.h"
#include "PDA/DPDA.h"
#include "PDA/SinglePopDPDA.h"
#include "PDA/InputDrivenDPDA.h"
#include "PDA/InputDrivenNPDA.h"
#include "PDA/VisiblyPushdownDPDA.h"
#include "PDA/VisiblyPushdownNPDA.h"
#include "PDA/RealTimeHeightDeterministicDPDA.h"
#include "PDA/RealTimeHeightDeterministicNPDA.h"
#include "PDA/NPDA.h"
#include "PDA/NPDTA.h"
#include "PDA/SinglePopNPDA.h"
#include "TM/OneTapeDTM.h"
#include "TA/DFTA.h"
#include "TA/NFTA.h"
#endif /* AUTOMATON_CLASSES_H_ */
/*
* GrammarClasses.h
*
* Created on: Jun 19, 2014
* Author: Jan Travnicek
*/
#ifndef GRAMMAR_CLASSES_H_
#define GRAMMAR_CLASSES_H_
#include "Regular/RightRG.h"
#include "Regular/LeftRG.h"
#include "Regular/RightLG.h"
#include "Regular/LeftLG.h"
#include "ContextFree/LG.h"
#include "ContextFree/CFG.h"
#include "ContextFree/EpsilonFreeCFG.h"
#include "ContextFree/GNF.h"
#include "ContextFree/CNF.h"
#include "ContextSensitive/CSG.h"
#include "ContextSensitive/NonContractingGrammar.h"
#include "Unrestricted/ContextPreservingUnrestrictedGrammar.h"
#include "Unrestricted/UnrestrictedGrammar.h"
#endif /* GRAMMAR_CLASSES_H_ */
/*
* RegExpClasses.h
*
* Created on: Jun 19, 2014
* Author: Jan Travnicek
*/
#ifndef REG_EXP_CLASSES_H_
#define REG_EXP_CLASSES_H_
#include "unbounded/UnboundedRegExp.h"
#include "formal/FormalRegExp.h"
#endif /* REG_EXP_CLASSES_H_ */
/*
* RTEClasses.h
*
* Created on: Feb 20, 2016
* Author: Tomas Pecka
*/
#ifndef RTE_CLASSES_H_
#define RTE_CLASSES_H_
#include "formal/FormalRTE.h"
#endif /* RTE_CLASSES_H_ */
/*
* StringClasses.h
*
* Created on: Jun 19, 2014
* Author: Jan Travnicek
*/
#ifndef STRING_CLASSES_H_
#define STRING_CLASSES_H_
#include "CyclicString.h"
#include "LinearString.h"
#include "WildcardLinearString.h"
#include "Epsilon.h"
#endif /* STRING_CLASSES_H_ */
/*
* TreeClasses.h
*
* Created on: Nov 16, 2014
* Author: Jan Travnicek
*/
#ifndef TREE_CLASSES_H_
#define TREE_CLASSES_H_
#include "ranked/RankedTree.h"
#include "ranked/RankedPattern.h"
#include "ranked/RankedNonlinearPattern.h"
#include "ranked/PrefixRankedTree.h"
#include "ranked/PrefixRankedBarTree.h"
#include "ranked/PrefixRankedPattern.h"
#include "ranked/PrefixRankedBarPattern.h"
#include "ranked/PostfixRankedTree.h"
#include "unranked/UnrankedTree.h"
#include "unranked/UnrankedPattern.h"
#include "unranked/UnrankedNonlinearPattern.h"
#endif /* TREE_CLASSES_H_ */
......@@ -15,7 +15,6 @@
 
#include <exception/CommonException.h>
 
#include <grammar/GrammarClasses.h>
#include <grammar/Grammar.h>
 
#include <core/stringApi.hpp>
......
......@@ -10,9 +10,6 @@
 
#include <ostream>
 
#include <grammar/GrammarClasses.h>
#include <grammar/Grammar.h>
#include <core/stringApi.hpp>
 
namespace grammar {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment