24 fs <<
"#include \"phoenix_type_stream.h\"" << std::endl;
74 PString name(classConfig.
getName());
77 name = name +
"::" + name;
81 if(listTemplate.size() != 0lu){
82 fs <<
"///Get the name of the class " << name << std::endl;
83 fs <<
"/**\t@return name of the class " << name << std::endl;
84 fs <<
"*/" << std::endl;
86 fs <<
"std::string phoenix_getTypeName<"<<name << mode.
defTemplate <<
" >(){" << std::endl;
87 fs <<
"\treturn \""<<name<<
"\"";
89 for(PVecString::const_iterator it(listTemplate.begin()); it != listTemplate.end(); ++it){
90 fs <<
" + phoenix_getTypeToStr<"<<it->split(
' ').back()<<
">()";
93 fs <<
";" << std::endl;
94 fs <<
"}" << std::endl << std::endl;
97 fs <<
"template<>" << std::endl;
98 fs <<
"std::string phoenix_getTypeName<"<<name<<
">();" << std::endl << std::endl;
109 PString name(classConfig.
getName());
110 fs <<
"///Get the name of the class " << name <<
" for PhoenixTypeStream" << std::endl;
111 fs <<
"/**\t@return name of the class " << name <<
" for PhoenixTypeStream" << std::endl;
112 fs <<
"*/" << std::endl;
114 name = name +
"::" + name;
117 if(listTemplate.size() == 0lu){
118 fs <<
"template<>" << std::endl;
122 fs <<
"std::string phoenix_getTypeName<"<<name << mode.
defTemplate <<
" >(){" << std::endl;
123 fs <<
"\treturn \""<<name<<
"\"";
124 if(listTemplate.size() != 0lu){
126 for(PVecString::const_iterator it(listTemplate.begin()); it != listTemplate.end(); ++it){
127 fs <<
" + phoenix_getTypeToStr<"<<it->split(
' ').back()<<
">()";
131 fs <<
";" << std::endl;
132 fs <<
"}" << std::endl << std::endl;
142 PString name(classConfig.
getName());
143 fs <<
"///Check TypeStream of class "+name+
"\n";
144 fs <<
"void check"+name+
"TypeStream(){\n";
146 name = name +
"::" + name;
148 fs <<
"\t"<<mode.
assertCall<<
"(phoenix_getTypeToStr<"<<name<<
">() == \""<<name<<
"\");\n";
159 PString name(classConfig.
getName());
160 fs <<
"\tcheck"+name+
"TypeStream();\n";
virtual ~CppTraitTypeStream()
Desctructor of CppTraitTypeStream.
virtual void privateMethodDeclaration(std::ofstream &fs, const PClassConfig &classConfig, const GeneratorMode &mode) const
Declaration of private methods.
virtual void classExtraFunctionImplementation(std::ofstream &fs, const PClassConfig &classConfig, const GeneratorMode &mode) const
Implementation of extra functions.
virtual void protectedMethodImplementation(std::ofstream &fs, const PClassConfig &classConfig, const GeneratorMode &mode) const
Implementation of protected methods.
virtual void privateMethodImplementation(std::ofstream &fs, const PClassConfig &classConfig, const GeneratorMode &mode) const
Implementation of private methods.
virtual void classExtraFunctionDeclaration(std::ofstream &fs, const PClassConfig &classConfig, const GeneratorMode &mode) const
Declaration of extra functions.
virtual void testCallFunction(std::ofstream &fs, const PClassConfig &classConfig, const GeneratorMode &mode) const
Call of the test function.
virtual void testFunction(std::ofstream &fs, const PClassConfig &classConfig, const GeneratorMode &mode) const
Implementation of test function.
virtual void protectedMethodDeclaration(std::ofstream &fs, const PClassConfig &classConfig, const GeneratorMode &mode) const
Declaration of protected methods.
virtual void headerExtraInclude(std::ofstream &fs, const GeneratorMode &mode) const
Add extra include on the header.
CppTraitTypeStream()
Consctructor of CppTraitTypeStream.
Class to describe a basic class.
const PVecString & getListTemplate() const
Returns the list of the template of the class.
const PString & getName() const
Returns the class name.
bool getIsEnum() const
Say if the current PClassConfig is an enum.
PString defTemplate
Template definition for the class header.
PString templateDeclaration
Template declaration of the method implementation.
PString assertCall
Assert to be used.
bool enableTypeStream
True to enable type stream interface generator.