From: stephan b. <sg...@us...> - 2004-12-26 09:44:37
|
Update of /cvsroot/pclasses/pclasses2/src/s11n In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22441/src/s11n Modified Files: SIO.cpp SIO.h Log Message: Fixed a copy/paste error which left the decls for serializerClass() in the impl file, not the header. Index: SIO.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/s11n/SIO.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- SIO.h 26 Dec 2004 09:36:19 -0000 1.3 +++ SIO.h 26 Dec 2004 09:44:27 -0000 1.4 @@ -210,6 +210,17 @@ return serialize( n, src ) && save( n, dest ); } + /** + Sets the current Serializer class used by createSerializer(). + Pass it a class name of a SerializerInterface type. + */ + void serializerClass( const std::string & ); + + /** + Gets the name of the current default Serializer type. + */ + std::string serializerClass(); + } // namespace SIO } // namespace P Index: SIO.cpp =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/s11n/SIO.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- SIO.cpp 26 Dec 2004 09:35:58 -0000 1.3 +++ SIO.cpp 26 Dec 2004 09:44:27 -0000 1.4 @@ -78,16 +78,6 @@ return ::P::s11n::io::load_node<S11nNode>( src ); } - /** - Sets the current Serializer class used by createSerializer(). - Pass it a class name of a SerializerInterface type. - */ - void serializerClass( const std::string & ); - - /** - Gets the name of the current default Serializer type. - */ - std::string serializerClass(); void serializerClass( const std::string & c ) { |