summaryrefslogtreecommitdiff
path: root/cpp/include/Slice/Parser.h
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-09-04 11:34:56 +0000
committerMarc Laukien <marc@zeroc.com>2002-09-04 11:34:56 +0000
commit38cb31162d00341cdcf38d65b327d09cb434824c (patch)
tree52b65eb7a0c8374a183eae4c54e8b51190c5603f /cpp/include/Slice/Parser.h
parentChanged anonymous namespace to static function because VC6 can't handle (diff)
downloadice-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.h12
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;