diff options
author | Marc Laukien <marc@zeroc.com> | 2002-09-04 11:34:56 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-09-04 11:34:56 +0000 |
commit | 38cb31162d00341cdcf38d65b327d09cb434824c (patch) | |
tree | 52b65eb7a0c8374a183eae4c54e8b51190c5603f /cpp/include/Slice/Parser.h | |
parent | Changed anonymous namespace to static function because VC6 can't handle (diff) | |
download | ice-38cb31162d00341cdcf38d65b327d09cb434824c.tar.bz2 ice-38cb31162d00341cdcf38d65b327d09cb434824c.tar.xz ice-38cb31162d00341cdcf38d65b327d09cb434824c.zip |
fixes
Diffstat (limited to 'cpp/include/Slice/Parser.h')
-rw-r--r-- | cpp/include/Slice/Parser.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/cpp/include/Slice/Parser.h b/cpp/include/Slice/Parser.h index 7804b0d5878..bad18bc3202 100644 --- a/cpp/include/Slice/Parser.h +++ b/cpp/include/Slice/Parser.h @@ -457,11 +457,15 @@ class SLICE_API Operation : virtual public Contained, virtual public Container public: // - // Note: The order of definitions here *must* match - // the order of definitions of ::Ice::OperationMode - // in Ice/Current.ice! + // Note: The order of definitions here *must* match the order of + // definitions of ::Ice::OperationMode in slice/Ice/Current.ice! // - enum Mode { Normal, Nonmutating, Idempotent }; + enum Mode + { + Normal, + Nonmutating, + Idempotent + }; TypePtr returnType() const; Mode mode() const; |