diff options
author | Brent Eagles <brent@zeroc.com> | 2005-03-25 00:44:05 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-03-25 00:44:05 +0000 |
commit | 2aba64dbdf60431dea4a440f2f98e7da51340506 (patch) | |
tree | cefce3152ed64702d4b29fb4e10241bcf5a50563 /cpp | |
parent | Removing some support for Slice classes. This is a first swipe so there is (diff) | |
download | ice-2aba64dbdf60431dea4a440f2f98e7da51340506.tar.bz2 ice-2aba64dbdf60431dea4a440f2f98e7da51340506.tar.xz ice-2aba64dbdf60431dea4a440f2f98e7da51340506.zip |
added preprocessor defs to remove certain methods from the Slice
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/slice/Ice/BuiltinSequences.ice | 6 | ||||
-rw-r--r-- | cpp/slice/Ice/Communicator.ice | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/cpp/slice/Ice/BuiltinSequences.ice b/cpp/slice/Ice/BuiltinSequences.ice index f8dc1c9533b..4697356d7dc 100644 --- a/cpp/slice/Ice/BuiltinSequences.ice +++ b/cpp/slice/Ice/BuiltinSequences.ice @@ -37,9 +37,13 @@ sequence<double> DoubleSeq; /** A sequence of strings. **/ sequence<string> StringSeq; +#ifndef ICEE + /** A sequence of objects. **/ sequence<Object> ObjectSeq; - + +#endif /* ICEE */ + /** A sequence of object proxies. **/ sequence<Object*> ObjectProxySeq; diff --git a/cpp/slice/Ice/Communicator.ice b/cpp/slice/Ice/Communicator.ice index 662db1df98c..b733a9755fe 100644 --- a/cpp/slice/Ice/Communicator.ice +++ b/cpp/slice/Ice/Communicator.ice @@ -167,6 +167,8 @@ local interface Communicator **/ ObjectAdapter createObjectAdapterWithEndpoints(string name, string endpoints); +#ifndef ICEE + /** * * Add a servant factory to this communicator. Installing a @@ -244,6 +246,8 @@ local interface Communicator **/ nonmutating ObjectFactory findObjectFactory(string id); +#endif /* ICEE */ + /** * * Set a default context on this communicator. Once set, |