diff options
author | Marc Laukien <marc@zeroc.com> | 2003-01-27 21:11:36 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2003-01-27 21:11:36 +0000 |
commit | e51106b81ce7c098de1bfef0b1cc0fd39763b97f (patch) | |
tree | 8b208a4ef512df2a66928fec0de3db28354bcfe6 /cpp/include/Ice/Direct.h | |
parent | Added ICE_UTIL_API for nullHandleAbort (diff) | |
download | ice-e51106b81ce7c098de1bfef0b1cc0fd39763b97f.tar.bz2 ice-e51106b81ce7c098de1bfef0b1cc0fd39763b97f.tar.xz ice-e51106b81ce7c098de1bfef0b1cc0fd39763b97f.zip |
restructuring
Diffstat (limited to 'cpp/include/Ice/Direct.h')
-rw-r--r-- | cpp/include/Ice/Direct.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cpp/include/Ice/Direct.h b/cpp/include/Ice/Direct.h index 3cd5af2003f..23e4dd93c18 100644 --- a/cpp/include/Ice/Direct.h +++ b/cpp/include/Ice/Direct.h @@ -24,14 +24,14 @@ namespace IceInternal { -class ICE_API Direct : public ::IceUtil::noncopyable +class ICE_API Direct : public IceUtil::noncopyable { public: - Direct(const ::Ice::Current&); + Direct(const Ice::Current&); ~Direct(); - const ::Ice::ObjectPtr& facetServant(); + const Ice::ObjectPtr& facetServant(); private: @@ -39,12 +39,12 @@ private: // Optimization. The current may not be deleted while a // stack-allocated Direct still holds it. // - const ::Ice::Current& _current; + const Ice::Current& _current; - ::Ice::ObjectPtr _servant; - ::Ice::ObjectPtr _facetServant; - ::Ice::ServantLocatorPtr _locator; - ::Ice::LocalObjectPtr _cookie; + Ice::ObjectPtr _servant; + Ice::ObjectPtr _facetServant; + Ice::ServantLocatorPtr _locator; + Ice::LocalObjectPtr _cookie; }; } |