summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ProxyFactory.h
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2004-02-15 21:19:54 +0000
committerMarc Laukien <marc@zeroc.com>2004-02-15 21:19:54 +0000
commit3ede1ddccf6c3f4c2f8a19fc8d16e9827c607cc2 (patch)
treef04bbbc008badb7eb13e499ff92fa7cfa100b888 /cpp/src/Ice/ProxyFactory.h
parentminor (diff)
downloadice-3ede1ddccf6c3f4c2f8a19fc8d16e9827c607cc2.tar.bz2
ice-3ede1ddccf6c3f4c2f8a19fc8d16e9827c607cc2.tar.xz
ice-3ede1ddccf6c3f4c2f8a19fc8d16e9827c607cc2.zip
more AMI stuff
Diffstat (limited to 'cpp/src/Ice/ProxyFactory.h')
-rw-r--r--cpp/src/Ice/ProxyFactory.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/cpp/src/Ice/ProxyFactory.h b/cpp/src/Ice/ProxyFactory.h
index e148fc0e7cb..59d6dc9e45b 100644
--- a/cpp/src/Ice/ProxyFactory.h
+++ b/cpp/src/Ice/ProxyFactory.h
@@ -21,25 +21,26 @@
#include <Ice/InstanceF.h>
#include <Ice/ReferenceF.h>
#include <Ice/ProxyF.h>
+#include <Ice/Exception.h>
namespace IceInternal
{
class BasicStream;
-class ProxyFactory : public ::IceUtil::Shared
+class ProxyFactory : public IceUtil::Shared
{
public:
- ::Ice::ObjectPrx stringToProxy(const std::string&) const;
- std::string proxyToString(const ::Ice::ObjectPrx&) const;
+ Ice::ObjectPrx stringToProxy(const std::string&) const;
+ std::string proxyToString(const Ice::ObjectPrx&) const;
- ::Ice::ObjectPrx streamToProxy(BasicStream*) const;
- void proxyToStream(const ::Ice::ObjectPrx&, BasicStream*) const;
+ Ice::ObjectPrx streamToProxy(BasicStream*) const;
+ void proxyToStream(const Ice::ObjectPrx&, BasicStream*) const;
- ::Ice::ObjectPrx referenceToProxy(const ReferencePtr&) const;
+ Ice::ObjectPrx referenceToProxy(const ReferencePtr&) const;
- const ::std::vector<int>& getRetryIntervals() const;
+ void checkRetryAfterException(const Ice::LocalException&, int&) const;
private:
@@ -48,7 +49,7 @@ private:
friend class Instance;
InstancePtr _instance;
- ::std::vector<int> _retryIntervals;
+ std::vector<int> _retryIntervals;
};
}