diff options
Diffstat (limited to 'cpp/src/Ice/EndpointFactory.cpp')
-rw-r--r-- | cpp/src/Ice/EndpointFactory.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/cpp/src/Ice/EndpointFactory.cpp b/cpp/src/Ice/EndpointFactory.cpp index 75e2e5cf661..7d5e93eb5c5 100644 --- a/cpp/src/Ice/EndpointFactory.cpp +++ b/cpp/src/Ice/EndpointFactory.cpp @@ -8,6 +8,8 @@ // ********************************************************************** #include <Ice/EndpointFactory.h> +#include <Ice/Instance.h> +#include <Ice/EndpointFactoryManager.h> using namespace std; using namespace Ice; @@ -23,3 +25,19 @@ IceInternal::EndpointFactory::~EndpointFactory() { } +IceInternal::EndpointFactoryPlugin::EndpointFactoryPlugin(const CommunicatorPtr& communicator, + const EndpointFactoryPtr& factory) +{ + assert(communicator); + getInstance(communicator)->endpointFactoryManager()->add(factory); +} + +void +IceInternal::EndpointFactoryPlugin::initialize() +{ +} + +void +IceInternal::EndpointFactoryPlugin::destroy() +{ +} |