summaryrefslogtreecommitdiff
path: root/cppe/src/IceE/ProxyFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'cppe/src/IceE/ProxyFactory.h')
-rw-r--r--cppe/src/IceE/ProxyFactory.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/cppe/src/IceE/ProxyFactory.h b/cppe/src/IceE/ProxyFactory.h
deleted file mode 100644
index c6af5e1bab3..00000000000
--- a/cppe/src/IceE/ProxyFactory.h
+++ /dev/null
@@ -1,59 +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_PROXY_FACTORY_H
-#define ICEE_PROXY_FACTORY_H
-
-#include <IceE/ProxyFactoryF.h>
-#include <IceE/InstanceF.h>
-#include <IceE/ReferenceF.h>
-#include <IceE/ProxyF.h>
-#include <IceE/Shared.h>
-
-namespace Ice
-{
-
-class LocalException;
-
-}
-
-namespace IceInternal
-{
-
-class BasicStream;
-
-class ProxyFactory : public IceUtil::Shared
-{
-public:
-
- Ice::ObjectPrx stringToProxy(const std::string&) const;
- std::string proxyToString(const Ice::ObjectPrx&) const;
-
- Ice::ObjectPrx propertyToProxy(const std::string&) const;
-
- Ice::ObjectPrx streamToProxy(BasicStream*) const;
- void proxyToStream(const Ice::ObjectPrx&, BasicStream*) const;
-
- Ice::ObjectPrx referenceToProxy(const ReferencePtr&) const;
-
- void checkRetryAfterException(const Ice::LocalException&, const ReferencePtr&, int&) const;
-
-private:
-
- ProxyFactory(const InstancePtr&);
- virtual ~ProxyFactory();
- friend class Instance;
-
- InstancePtr _instance;
- std::vector<int> _retryIntervals;
-};
-
-}
-
-#endif