diff options
author | Matthew Newhook <matthew@zeroc.com> | 2008-03-26 12:32:53 +0800 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2008-03-26 12:32:53 +0800 |
commit | fa54880711c3d2a166c90335eae3d7763f4365d0 (patch) | |
tree | a9d660e229290e0ba85d9e4b8b0970d224b1c1a4 /cpp/src/IceStorm/Service.cpp | |
parent | Bug 2918 - Added code to use FileName member for warning message if the membe... (diff) | |
download | ice-fa54880711c3d2a166c90335eae3d7763f4365d0.tar.bz2 ice-fa54880711c3d2a166c90335eae3d7763f4365d0.tar.xz ice-fa54880711c3d2a166c90335eae3d7763f4365d0.zip |
bug 2873 - IceStorm::Service -> IceStormInternal::Service.
Diffstat (limited to 'cpp/src/IceStorm/Service.cpp')
-rw-r--r-- | cpp/src/IceStorm/Service.cpp | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/cpp/src/IceStorm/Service.cpp b/cpp/src/IceStorm/Service.cpp index 05953b6e7ed..44cbd5bf24a 100644 --- a/cpp/src/IceStorm/Service.cpp +++ b/cpp/src/IceStorm/Service.cpp @@ -26,12 +26,13 @@ using namespace std; using namespace Ice; using namespace Freeze; using namespace IceStorm; +using namespace IceStormInternal; using namespace IceStormElection; -namespace IceStorm +namespace IceStormInternal { -class ServiceI : public ::IceStorm::Service +class ServiceI : public IceStormInternal::Service { public: @@ -77,7 +78,7 @@ createIceStorm(CommunicatorPtr communicator) } ServicePtr -IceStorm::Service::create(const CommunicatorPtr& communicator, +Service::create(const CommunicatorPtr& communicator, const ObjectAdapterPtr& topicAdapter, const ObjectAdapterPtr& publishAdapter, const string& name, @@ -90,16 +91,16 @@ IceStorm::Service::create(const CommunicatorPtr& communicator, return svc; } -IceStorm::ServiceI::ServiceI() +ServiceI::ServiceI() { } -IceStorm::ServiceI::~ServiceI() +ServiceI::~ServiceI() { } void -IceStorm::ServiceI::start( +ServiceI::start( const string& name, const CommunicatorPtr& communicator, const StringSeq& args) @@ -338,7 +339,7 @@ IceStorm::ServiceI::start( } void -IceStorm::ServiceI::start(const CommunicatorPtr& communicator, +ServiceI::start(const CommunicatorPtr& communicator, const ObjectAdapterPtr& topicAdapter, const ObjectAdapterPtr& publishAdapter, const string& name, @@ -369,13 +370,13 @@ IceStorm::ServiceI::start(const CommunicatorPtr& communicator, } TopicManagerPrx -IceStorm::ServiceI::getTopicManager() const +ServiceI::getTopicManager() const { return _managerProxy; } void -IceStorm::ServiceI::stop() +ServiceI::stop() { // Shutdown the instance. This deactivates all OAs. _instance->shutdown(); @@ -399,7 +400,7 @@ IceStorm::ServiceI::stop() } void -IceStorm::ServiceI::validateProperties(const string& name, const PropertiesPtr& properties, const LoggerPtr& logger) +ServiceI::validateProperties(const string& name, const PropertiesPtr& properties, const LoggerPtr& logger) { static const string suffixes[] = { |