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/include/IceStorm/Service.h | |
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/include/IceStorm/Service.h')
-rw-r--r-- | cpp/include/IceStorm/Service.h | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/cpp/include/IceStorm/Service.h b/cpp/include/IceStorm/Service.h deleted file mode 100644 index 254a67c56e4..00000000000 --- a/cpp/include/IceStorm/Service.h +++ /dev/null @@ -1,50 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -#ifndef ICESTORM_SERVICE_H -#define ICESTORM_SERVICE_H - -#include <IceBox/IceBox.h> -#include <IceStorm/IceStorm.h> - -#ifndef ICE_STORM_API -# ifdef ICE_STORM_API_EXPORTS -# define ICE_STORM_API ICE_DECLSPEC_EXPORT -# else -# define ICE_STORM_API ICE_DECLSPEC_IMPORT -# endif -#endif - -namespace IceStorm -{ - -class Service; -typedef ::IceInternal::Handle< ::IceStorm::Service> ServicePtr; - -class ICE_STORM_API Service : public ::IceBox::Service -{ -public: - - static ServicePtr create(const Ice::CommunicatorPtr&, - const Ice::ObjectAdapterPtr&, - const Ice::ObjectAdapterPtr&, - const std::string&, - const Ice::Identity&, - const std::string&); - - virtual void start(const std::string&, const Ice::CommunicatorPtr&, const Ice::StringSeq&) = 0; - - virtual TopicManagerPrx getTopicManager() const = 0; - - virtual void stop() = 0; -}; - -}; - -#endif |