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

unit build string primitive

parent a9dca4d1
No related branches found
No related tags found
No related merge requests found
...@@ -28,8 +28,8 @@ void stringApi < bool >::compose ( std::ostream & output, bool primitive ) { ...@@ -28,8 +28,8 @@ void stringApi < bool >::compose ( std::ostream & output, bool primitive ) {
   
namespace { namespace {
   
auto stringWrite = registration::StringWriterRegister < bool > ( ); auto stringWriteBool = registration::StringWriterRegister < bool > ( );
   
auto stringWriteGroup = registration::StringWriterRegisterTypeInGroup < object::Object, bool > ( ); auto stringWriteGroupBool = registration::StringWriterRegisterTypeInGroup < object::Object, bool > ( );
   
} /* namespace */ } /* namespace */
...@@ -28,8 +28,8 @@ void stringApi < char >::compose ( std::ostream & output, char primitive ) { ...@@ -28,8 +28,8 @@ void stringApi < char >::compose ( std::ostream & output, char primitive ) {
   
namespace { namespace {
   
auto stringWrite = registration::StringWriterRegister < char > ( ); auto stringWriteCharacter = registration::StringWriterRegister < char > ( );
   
auto stringWriteGroup = registration::StringWriterRegisterTypeInGroup < object::Object, char > ( ); auto stringWriteGroupCharacter = registration::StringWriterRegisterTypeInGroup < object::Object, char > ( );
   
} /* namespace */ } /* namespace */
...@@ -35,10 +35,10 @@ void stringApi < int >::compose ( std::ostream & output, int primitive ) { ...@@ -35,10 +35,10 @@ void stringApi < int >::compose ( std::ostream & output, int primitive ) {
   
namespace { namespace {
   
auto stringWrite = registration::StringWriterRegister < int > ( ); auto stringWriteInteger = registration::StringWriterRegister < int > ( );
auto stringReader = registration::StringReaderRegister < object::Object, int > ( ); auto stringReaderInteger = registration::StringReaderRegister < object::Object, int > ( );
   
auto stringReaderGroup = registration::StringReaderRegisterTypeInGroup < object::Object, int > ( ); auto stringReaderGroupInteger = registration::StringReaderRegisterTypeInGroup < object::Object, int > ( );
auto stringWriteGroup = registration::StringWriterRegisterTypeInGroup < object::Object, int > ( ); auto stringWriteGroupInteger = registration::StringWriterRegisterTypeInGroup < object::Object, int > ( );
   
} /* namespace */ } /* namespace */
#include "Bool.cxx"
#include "Character.cxx"
#include "Integer.cxx"
#include "String.cxx"
#include "Unsigned.cxx"
#include "UnsignedLong.cxx"
...@@ -35,10 +35,10 @@ void stringApi < std::string >::compose ( std::ostream & output, const std::stri ...@@ -35,10 +35,10 @@ void stringApi < std::string >::compose ( std::ostream & output, const std::stri
   
namespace { namespace {
   
auto stringWrite = registration::StringWriterRegister < std::string > ( ); auto stringWriteString = registration::StringWriterRegister < std::string > ( );
auto stringReader = registration::StringReaderRegister < object::Object, std::string > ( ); auto stringReaderString = registration::StringReaderRegister < object::Object, std::string > ( );
   
auto stringReaderGroup = registration::StringReaderRegisterTypeInGroup < object::Object, std::string > ( ); auto stringReaderGroupString = registration::StringReaderRegisterTypeInGroup < object::Object, std::string > ( );
auto stringWriteGroup = registration::StringWriterRegisterTypeInGroup < object::Object, std::string > ( ); auto stringWriteGroupString = registration::StringWriterRegisterTypeInGroup < object::Object, std::string > ( );
   
} /* namespace */ } /* namespace */
...@@ -28,8 +28,8 @@ void stringApi < unsigned >::compose ( std::ostream & output, unsigned primitive ...@@ -28,8 +28,8 @@ void stringApi < unsigned >::compose ( std::ostream & output, unsigned primitive
   
namespace { namespace {
   
auto stringWrite = registration::StringWriterRegister < unsigned > ( ); auto stringWriteUnsigned = registration::StringWriterRegister < unsigned > ( );
   
auto stringWriteGroup = registration::StringWriterRegisterTypeInGroup < object::Object, unsigned > ( ); auto stringWriteGroupUnsigned = registration::StringWriterRegisterTypeInGroup < object::Object, unsigned > ( );
   
} /* namespace */ } /* namespace */
...@@ -28,8 +28,8 @@ void stringApi < unsigned long >::compose ( std::ostream & output, unsigned long ...@@ -28,8 +28,8 @@ void stringApi < unsigned long >::compose ( std::ostream & output, unsigned long
   
namespace { namespace {
   
auto stringWrite = registration::StringWriterRegister < unsigned long > ( ); auto stringWriteUnsignedLong = registration::StringWriterRegister < unsigned long > ( );
   
auto stringWriteGroup = registration::StringWriterRegisterTypeInGroup < object::Object, unsigned long > ( ); auto stringWriteGroupUnsignedLong = registration::StringWriterRegisterTypeInGroup < object::Object, unsigned long > ( );
   
} /* 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