From: stephan b. <sg...@us...> - 2004-12-25 19:57:16
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses/IO In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25972/include/pclasses/IO Modified Files: IOManager.h Log Message: typedef renamed, to follow PNamingConventions. Index: IOManager.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/IO/IOManager.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- IOManager.h 25 Dec 2004 19:53:57 -0000 1.2 +++ IOManager.h 25 Dec 2004 19:56:32 -0000 1.3 @@ -17,8 +17,8 @@ public: typdef IOPluginManager<InterfaceT> ThisType; typedef ::P::PluginManager<InterfaceT> ParentType; - typedef typename ParentType::factory_type factory_type; - typedef typename ParentType::result_type result_type; + typedef typename ParentType::FactoryFuncType FactoryFuncType; + typedef typename ParentType::ResultType ResultType; using ::P::Net::URL; IOPluginManager(){} virtual ~IOPluginManager(){} @@ -40,7 +40,7 @@ Returns this->registerFactory(_protocol.protocol()). */ void - registerFactory(const URL &_protocol, factory_type fp) + registerFactory(const URL &_protocol, FactoryFuncType fp) { this->registerFactory( _protocol.protocol(), fp ) } @@ -48,7 +48,7 @@ /** Returns this->create(_protocol.protocol()). */ - result_type create( const URL & _protocol ) + ResultType create( const URL & _protocol ) { return this->create( _protocol.protocol() ); } |