diff options
Diffstat (limited to 'cppe/src/IceE/EndpointFactory.h')
-rw-r--r-- | cppe/src/IceE/EndpointFactory.h | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/cppe/src/IceE/EndpointFactory.h b/cppe/src/IceE/EndpointFactory.h deleted file mode 100644 index 2c911d7b81d..00000000000 --- a/cppe/src/IceE/EndpointFactory.h +++ /dev/null @@ -1,43 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved. -// -// This copy of Ice-E is licensed to you under the terms described in the -// ICEE_LICENSE file included in this distribution. -// -// ********************************************************************** - -#ifndef ICEE_ENDPOINT_FACTORY_H -#define ICEE_ENDPOINT_FACTORY_H - -#include <IceE/EndpointFactoryF.h> -#include <IceE/EndpointF.h> -#include <IceE/InstanceF.h> -#include <IceE/Shared.h> - -namespace IceInternal -{ - -class BasicStream; - -class EndpointFactory : public ::IceUtil::Shared -{ -public: - - ~EndpointFactory(); - - EndpointPtr create(const std::string&) const; - EndpointPtr read(BasicStream*) const; - void destroy(); - -protected: - - EndpointFactory(const InstancePtr&); - friend class Instance; - - InstancePtr _instance; -}; - -} - -#endif |