|
From: stephan b. <sg...@us...> - 2004-06-02 06:57:53
|
Update of /cvsroot/qub/eshell/client/gcom In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21598/client/gcom Modified Files: gcom.h properties.cpp properties.h Log Message: brought up to date with s11n 0.9pre2 Index: gcom.h =================================================================== RCS file: /cvsroot/qub/eshell/client/gcom/gcom.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- gcom.h 31 May 2004 15:19:07 -0000 1.3 +++ gcom.h 2 Jun 2004 06:57:44 -0000 1.4 @@ -5,7 +5,7 @@ #include <list> #include <s11n.net/s11n/s11n_debuggering_macros.hpp> // COUT/CERR -#include <s11n.net/t5x/children_holder.hpp> // a parent-child manager +#include <s11n.net/acme/children_holder.hpp> // a parent-child manager #include "properties.h" // properties class #include "event.h" // event framework namespace gcom { @@ -151,7 +151,7 @@ /** An internal helper type. Don't rely on it. */ - typedef t5x::children_holder<basic_gcom,basic_gcom> babysitter_type; + typedef acme::children_holder<basic_gcom,basic_gcom> babysitter_type; /** Guaranteed to be std::list/vector compatible. */ Index: properties.cpp =================================================================== RCS file: /cvsroot/qub/eshell/client/gcom/properties.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- properties.cpp 31 May 2004 15:19:07 -0000 1.2 +++ properties.cpp 2 Jun 2004 06:57:44 -0000 1.3 @@ -18,7 +18,7 @@ bool properties::unset( const std::string & key ) { - bool b = this->t5x::property_store::unset( key ); + bool b = this->acme::property_store::unset( key ); if( b ) { event::fire_event<property_event>(new property_event( this, key, property_event::Unset ), @@ -30,7 +30,7 @@ void properties::set_string( const std::string & key, const std::string & val ) { - this->t5x::property_store::set_string( key, val ); + this->acme::property_store::set_string( key, val ); event::fire_event<property_event>(new property_event( this, key, property_event::Modified ), true ); } Index: properties.h =================================================================== RCS file: /cvsroot/qub/eshell/client/gcom/properties.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- properties.h 31 May 2004 15:19:07 -0000 1.3 +++ properties.h 2 Jun 2004 06:57:44 -0000 1.4 @@ -7,7 +7,7 @@ // License: Do As You Damned Well Please // Author: stephan //////////////////////////////////////////////////////////////////////// -#include <s11n.net/t5x/property_store.hpp> +#include <s11n.net/acme/property_store.hpp> #include "event.h" // event framework @@ -84,7 +84,7 @@ or should graceful unregister itself when it dies. */ - class properties : public t5x::property_store + class properties : public acme::property_store { public: /** |