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

unit build in string grammar context free

parent 8ffd608c
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
   
namespace { namespace {
   
auto stringWrite = registration::StringWriterRegister < grammar::CFG < > > ( ); auto stringWriteCFG = registration::StringWriterRegister < grammar::CFG < > > ( );
auto stringReader = registration::StringReaderRegister < grammar::Grammar, grammar::CFG < > > ( ); auto stringReaderCFG = registration::StringReaderRegister < grammar::Grammar, grammar::CFG < > > ( );
   
} /* namespace */ } /* namespace */
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
   
namespace { namespace {
   
auto stringWrite = registration::StringWriterRegister < grammar::CNF < > > ( ); auto stringWriteCNF = registration::StringWriterRegister < grammar::CNF < > > ( );
auto stringReader = registration::StringReaderRegister < grammar::Grammar, grammar::CNF < > > ( ); auto stringReaderCNF = registration::StringReaderRegister < grammar::Grammar, grammar::CNF < > > ( );
   
} /* namespace */ } /* namespace */
#include "CFG.cxx"
#include "CNF.cxx"
#include "EpsilonFreeCFG.cxx"
#include "GNF.cxx"
#include "LG.cxx"
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
   
namespace { namespace {
   
auto stringWrite = registration::StringWriterRegister < grammar::EpsilonFreeCFG < > > ( ); auto stringWriteEpsilonFreeCFG = registration::StringWriterRegister < grammar::EpsilonFreeCFG < > > ( );
auto stringReader = registration::StringReaderRegister < grammar::Grammar, grammar::EpsilonFreeCFG < > > ( ); auto stringReaderEpsilonFreeCFG = registration::StringReaderRegister < grammar::Grammar, grammar::EpsilonFreeCFG < > > ( );
   
} /* namespace */ } /* namespace */
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
   
namespace { namespace {
   
auto stringWrite = registration::StringWriterRegister < grammar::GNF < > > ( ); auto stringWriteGNF = registration::StringWriterRegister < grammar::GNF < > > ( );
auto stringReader = registration::StringReaderRegister < grammar::Grammar, grammar::GNF < > > ( ); auto stringReaderGNF = registration::StringReaderRegister < grammar::Grammar, grammar::GNF < > > ( );
   
} /* namespace */ } /* namespace */
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
   
namespace { namespace {
   
auto stringWrite = registration::StringWriterRegister < grammar::LG < > > ( ); auto stringWriteLG = registration::StringWriterRegister < grammar::LG < > > ( );
auto stringReader = registration::StringReaderRegister < grammar::Grammar, grammar::LG < > > ( ); auto stringReaderLG = registration::StringReaderRegister < grammar::Grammar, grammar::LG < > > ( );
   
} /* namespace */ } /* namespace */
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