diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-07-05 17:09:52 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-07-05 17:09:52 +0000 |
commit | 2d785a494566c723ea29cb8a1841d3bded9f52b6 (patch) | |
tree | 9d9e80c637c6add4e6d58fec291f2c9ebb9a58ef /cppe/src/IceE/ReferenceFactory.cpp | |
parent | Fixed linux compile (diff) | |
download | ice-2d785a494566c723ea29cb8a1841d3bded9f52b6.tar.bz2 ice-2d785a494566c723ea29cb8a1841d3bded9f52b6.tar.xz ice-2d785a494566c723ea29cb8a1841d3bded9f52b6.zip |
cleaned up includes.
Diffstat (limited to 'cppe/src/IceE/ReferenceFactory.cpp')
-rw-r--r-- | cppe/src/IceE/ReferenceFactory.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/cppe/src/IceE/ReferenceFactory.cpp b/cppe/src/IceE/ReferenceFactory.cpp index ef14ad36dc9..10e8531ba0b 100644 --- a/cppe/src/IceE/ReferenceFactory.cpp +++ b/cppe/src/IceE/ReferenceFactory.cpp @@ -8,14 +8,16 @@ // ********************************************************************** #include <IceE/ReferenceFactory.h> -#include <IceE/ProxyFactory.h> #include <IceE/LocalException.h> #include <IceE/Instance.h> #include <IceE/IdentityUtil.h> -#include <IceE/Endpoint.h> #include <IceE/EndpointFactory.h> -#include <IceE/RouterInfo.h> -#include <IceE/LocatorInfo.h> +#ifndef ICEE_NO_ROUTER +# include <IceE/RouterInfo.h> +#endif +#ifndef ICEE_NO_LOCATOR +# include <IceE/LocatorInfo.h> +#endif #include <IceE/BasicStream.h> #include <IceE/StringUtil.h> |