diff options
author | Benoit Foucher <benoit@zeroc.com> | 2007-03-23 16:37:45 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2007-03-23 16:37:45 +0000 |
commit | dd66c50ce1cd9c8fc45d286d68c059e35073de0d (patch) | |
tree | cabb1fd247cefdf130f221c04d1eb8952ec46672 /cpp/src/Ice/LocatorInfoF.h | |
parent | fix timestamp string (diff) | |
download | ice-dd66c50ce1cd9c8fc45d286d68c059e35073de0d.tar.bz2 ice-dd66c50ce1cd9c8fc45d286d68c059e35073de0d.tar.xz ice-dd66c50ce1cd9c8fc45d286d68c059e35073de0d.zip |
Bug 1873.
Diffstat (limited to 'cpp/src/Ice/LocatorInfoF.h')
-rw-r--r-- | cpp/src/Ice/LocatorInfoF.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/cpp/src/Ice/LocatorInfoF.h b/cpp/src/Ice/LocatorInfoF.h index 577cc8111d0..4b8e1b4b90c 100644 --- a/cpp/src/Ice/LocatorInfoF.h +++ b/cpp/src/Ice/LocatorInfoF.h @@ -10,24 +10,23 @@ #ifndef ICE_LOCATOR_INFO_F_H #define ICE_LOCATOR_INFO_F_H +#include <IceUtil/Shared.h> + #include <Ice/Handle.h> namespace IceInternal { class LocatorManager; -void incRef(LocatorManager*); -void decRef(LocatorManager*); +IceUtil::Shared* upCast(LocatorManager*); typedef Handle<LocatorManager> LocatorManagerPtr; class LocatorInfo; -void incRef(LocatorInfo*); -void decRef(LocatorInfo*); +IceUtil::Shared* upCast(LocatorInfo*); typedef Handle<LocatorInfo> LocatorInfoPtr; class LocatorTable; -void incRef(LocatorTable*); -void decRef(LocatorTable*); +IceUtil::Shared* upCast(LocatorTable*); typedef Handle<LocatorTable> LocatorTablePtr; } |