diff options
Diffstat (limited to 'cpp/src/Ice/EndpointFactoryManager.h')
-rw-r--r-- | cpp/src/Ice/EndpointFactoryManager.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/cpp/src/Ice/EndpointFactoryManager.h b/cpp/src/Ice/EndpointFactoryManager.h index 522691982c6..fc1e911bb49 100644 --- a/cpp/src/Ice/EndpointFactoryManager.h +++ b/cpp/src/Ice/EndpointFactoryManager.h @@ -17,10 +17,15 @@ #include <Ice/EndpointFactoryF.h> #include <Ice/EndpointFactoryManagerF.h> -namespace IceInternal +namespace Ice { -class BasicStream; +class InputStream; + +} + +namespace IceInternal +{ class EndpointFactoryManager : public ::IceUtil::Shared, public ::IceUtil::Mutex { @@ -29,7 +34,7 @@ public: void add(const EndpointFactoryPtr&); EndpointFactoryPtr get(::Ice::Short) const; EndpointIPtr create(const std::string&, bool) const; - EndpointIPtr read(BasicStream*) const; + EndpointIPtr read(Ice::InputStream*) const; private: |