diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-08-12 04:44:58 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-08-12 04:44:58 +0000 |
commit | 708d97e4bd4acf9d7c1bad093d0c3847282b09c2 (patch) | |
tree | f6d6de12f2b778f67d52906c8978578bb278b4e6 /cppe/include/IceE/ObjectAdapter.h | |
parent | http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=439 (diff) | |
download | ice-708d97e4bd4acf9d7c1bad093d0c3847282b09c2.tar.bz2 ice-708d97e4bd4acf9d7c1bad093d0c3847282b09c2.tar.xz ice-708d97e4bd4acf9d7c1bad093d0c3847282b09c2.zip |
ICEE_ -> ICE_
Diffstat (limited to 'cppe/include/IceE/ObjectAdapter.h')
-rwxr-xr-x | cppe/include/IceE/ObjectAdapter.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/cppe/include/IceE/ObjectAdapter.h b/cppe/include/IceE/ObjectAdapter.h index 2f93ecffdaf..d8414e64626 100755 --- a/cppe/include/IceE/ObjectAdapter.h +++ b/cppe/include/IceE/ObjectAdapter.h @@ -7,8 +7,8 @@ //
// **********************************************************************
-#ifndef ICEE_OBJECT_ADAPTER_H
-#define ICEE_OBJECT_ADAPTER_H
+#ifndef ICE_OBJECT_ADAPTER_H
+#define ICE_OBJECT_ADAPTER_H
#include <IceE/ObjectAdapterF.h>
#include <IceE/InstanceF.h>
@@ -20,11 +20,11 @@ #include <IceE/ObjectF.h>
#include <IceE/EndpointF.h>
-#ifdef ICEE_HAS_ROUTER
+#ifdef ICE_HAS_ROUTER
# include <IceE/RouterF.h>
#endif
-#ifdef ICEE_HAS_LOCATOR
+#ifdef ICE_HAS_LOCATOR
# include <IceE/LocatorF.h>
# include <IceE/LocatorInfoF.h>
#endif
@@ -40,7 +40,7 @@ namespace Ice
{
-class ICEE_API ObjectAdapter : public IceUtil::Monitor<IceUtil::RecMutex>, public ::IceUtil::Shared
+class ICE_API ObjectAdapter : public IceUtil::Monitor<IceUtil::RecMutex>, public ::IceUtil::Shared
{
public:
@@ -70,10 +70,10 @@ public: ObjectPrx createDirectProxy(const Identity&) const;
ObjectPrx createReverseProxy(const Identity&) const;
-#ifdef ICEE_HAS_ROUTER
+#ifdef ICE_HAS_ROUTER
void addRouter(const RouterPrx&);
#endif
-#ifdef ICEE_HAS_LOCATOR
+#ifdef ICE_HAS_LOCATOR
void setLocator(const LocatorPrx&);
#endif
@@ -106,11 +106,11 @@ private: const std::string _name;
const std::string _id;
std::vector<IceInternal::IncomingConnectionFactoryPtr> _incomingConnectionFactories;
-#ifdef ICEE_HAS_ROUTER
+#ifdef ICE_HAS_ROUTER
std::vector<IceInternal::EndpointPtr> _routerEndpoints;
#endif
std::vector<IceInternal::EndpointPtr> _publishedEndpoints;
-#ifdef ICEE_HAS_LOCATOR
+#ifdef ICE_HAS_LOCATOR
IceInternal::LocatorInfoPtr _locatorInfo;
#endif
int _directCount; // The number of direct proxies dispatching on this object adapter.
|