diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-07-06 14:49:47 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-07-06 14:49:47 +0000 |
commit | 8e48f2b8c9505ff088a72737dc7216d55732857a (patch) | |
tree | 7faaef71bf1a2216bfeb7dd7c0d6cd6e06985ca7 /cppe/include/IceE/ObjectAdapter.h | |
parent | fix shutdown bug. Fix bug with building IceE client side library with (diff) | |
download | ice-8e48f2b8c9505ff088a72737dc7216d55732857a.tar.bz2 ice-8e48f2b8c9505ff088a72737dc7216d55732857a.tar.xz ice-8e48f2b8c9505ff088a72737dc7216d55732857a.zip |
_NO_ -> _HAS_
Diffstat (limited to 'cppe/include/IceE/ObjectAdapter.h')
-rwxr-xr-x | cppe/include/IceE/ObjectAdapter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/include/IceE/ObjectAdapter.h b/cppe/include/IceE/ObjectAdapter.h index e58aeb7a605..7c099229bb2 100755 --- a/cppe/include/IceE/ObjectAdapter.h +++ b/cppe/include/IceE/ObjectAdapter.h @@ -95,11 +95,11 @@ private: const std::string _name;
const std::string _id;
std::vector<IceInternal::IncomingConnectionFactoryPtr> _incomingConnectionFactories;
-#ifndef ICEE_NO_ROUTER
+#ifdef ICEE_HAS_ROUTER
std::vector<IceInternal::EndpointPtr> _routerEndpoints;
#endif
std::vector<IceInternal::EndpointPtr> _publishedEndpoints;
-#ifndef ICEE_NO_LOCATOR
+#ifdef ICEE_HAS_LOCATOR
IceInternal::LocatorInfoPtr _locatorInfo;
#endif
int _directCount; // The number of direct proxies dispatching on this object adapter.
|