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/src/IceE/OutgoingConnectionFactory.cpp | |
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/src/IceE/OutgoingConnectionFactory.cpp')
-rwxr-xr-x | cppe/src/IceE/OutgoingConnectionFactory.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cppe/src/IceE/OutgoingConnectionFactory.cpp b/cppe/src/IceE/OutgoingConnectionFactory.cpp index 247dd26d8fc..e6ebcbfe69c 100755 --- a/cppe/src/IceE/OutgoingConnectionFactory.cpp +++ b/cppe/src/IceE/OutgoingConnectionFactory.cpp @@ -18,7 +18,7 @@ #include <IceE/RouterInfo.h> #include <IceE/LocalException.h> #include <IceE/Functional.h> -#ifndef ICEE_NO_ROUTER
+#ifdef ICEE_HAS_ROUTER
# include <IceE/Reference.h>
#endif #include <list> @@ -328,7 +328,7 @@ IceInternal::OutgoingConnectionFactory::create(const vector<EndpointPtr>& endpts return connection; } -#ifndef ICEE_NO_ROUTER +#ifdef ICEE_HAS_ROUTER void IceInternal::OutgoingConnectionFactory::setRouter(const RouterPrx& router) @@ -388,7 +388,7 @@ IceInternal::OutgoingConnectionFactory::setRouter(const RouterPrx& router) #endif -#ifndef ICEE_NO_BATCH +#ifdef ICEE_HAS_BATCH void IceInternal::OutgoingConnectionFactory::flushBatchRequests() { |