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

delete not needed code

parent f0335f3e
No related branches found
No related tags found
No related merge requests found
......@@ -19,12 +19,6 @@ namespace container {
class Container : public alib::WrapperBase < ContainerBase > {
using alib::WrapperBase < ContainerBase >::WrapperBase;
 
public:
static const std::string & getXmlTagRefName() {
static std::string xmlTagName = "ContainerRef";
return xmlTagName;
}
};
 
} /* namespace container */
......
......@@ -29,11 +29,6 @@ public:
 
void inc ( );
 
static const std::string & getXmlTagRefName() {
static std::string xmlTagName = "ObjectRef";
return xmlTagName;
}
};
 
} /* namespace alib */
......
......@@ -29,11 +29,6 @@ public:
 
void inc ( );
 
static const std::string & getXmlTagRefName() {
static std::string xmlTagName = "PrimitiveRef";
return xmlTagName;
}
};
 
} /* namespace primitive */
......
......@@ -34,11 +34,6 @@ public:
 
void inc ( );
 
static const std::string & getXmlTagRefName() {
static std::string xmlTagName = "SymbolRef";
return xmlTagName;
}
};
 
} /* namespace alphabet */
......
......@@ -19,12 +19,6 @@ namespace automaton {
class Automaton : public alib::WrapperBase < AutomatonBase > {
using alib::WrapperBase < AutomatonBase >::WrapperBase;
 
public:
static const std::string & getXmlTagRefName() {
static std::string xmlTagName = "AutomatonRef";
return xmlTagName;
}
};
 
template < class T >
......
......@@ -21,12 +21,6 @@ namespace grammar {
class Grammar : public alib::WrapperBase < GrammarBase > {
using alib::WrapperBase < GrammarBase >::WrapperBase;
 
public:
static const std::string & getXmlTagRefName() {
static std::string xmlTagName = "GrammarRef";
return xmlTagName;
}
};
 
template < class T >
......
......@@ -34,11 +34,6 @@ public:
 
void inc ( );
 
static const std::string & getXmlTagRefName() {
static std::string xmlTagName = "LabelRef";
return xmlTagName;
}
};
 
} /* namespace label */
......
......@@ -25,12 +25,6 @@ namespace regexp {
class RegExp : public alib::WrapperBase < RegExpBase > {
using alib::WrapperBase < RegExpBase >::WrapperBase;
 
public:
static const std::string & getXmlTagRefName() {
static std::string xmlTagName = "RegExpRef";
return xmlTagName;
}
};
 
regexp::RegExp regexpFrom ( const std::string & string );
......
......@@ -27,12 +27,6 @@ public:
const std::set < std::ranked_symbol < > > & getAlphabet ( ) const;
const std::set < std::ranked_symbol < > > & getSubstitutionAlphabet ( ) const;
 
static const std::string & getXmlTagRefName ( ) {
static std::string xmlTagName = "RTERef";
return xmlTagName;
}
};
 
} /* namespace rte */
......
......@@ -22,12 +22,6 @@ namespace string {
class String : public alib::WrapperBase < StringBase > {
using alib::WrapperBase < StringBase >::WrapperBase;
 
public:
static const std::string & getXmlTagRefName() {
static std::string xmlTagName = "StringRef";
return xmlTagName;
}
};
 
string::String stringFrom ( const DefaultSymbolType & symbol );
......
......@@ -19,12 +19,6 @@ namespace tree {
class RankedTreeWrapper : public alib::WrapperBase < RankedTreeBase > {
using alib::WrapperBase < RankedTreeBase >::WrapperBase;
 
public:
static const std::string & getXmlTagRefName() {
static std::string xmlTagName = "RankedTreeWrapperRef";
return xmlTagName;
}
};
 
} /* namespace tree */
......
......@@ -19,12 +19,6 @@ namespace tree {
class Tree : public alib::WrapperBase < TreeBase > {
using alib::WrapperBase < TreeBase >::WrapperBase;
 
public:
static const std::string & getXmlTagRefName() {
static std::string xmlTagName = "TreeRef";
return xmlTagName;
}
};
 
} /* namespace tree */
......
......@@ -19,12 +19,6 @@ namespace tree {
class UnrankedTreeWrapper : public alib::WrapperBase < UnrankedTreeBase > {
using alib::WrapperBase < UnrankedTreeBase >::WrapperBase;
 
public:
static const std::string & getXmlTagRefName() {
static std::string xmlTagName = "UnrankedTreeWrapperRef";
return xmlTagName;
}
};
 
} /* namespace tree */
......
......@@ -17,12 +17,6 @@ namespace graph {
class Graph : public alib::WrapperBase < GraphBase > {
using alib::WrapperBase < GraphBase >::WrapperBase;
 
public:
static const std::string & getXmlTagRefName() {
static std::string xmlTagName = "GraphRef";
return xmlTagName;
}
};
 
} // namespace graph
......
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