diff options
author | Marc Laukien <marc@zeroc.com> | 2002-06-23 21:17:04 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-06-23 21:17:04 +0000 |
commit | 59788b8663f1f05a95b7afbbc6d2846dae11c96a (patch) | |
tree | c3ed292df270f11157decb83827d9af4144db52d /cpp/src/Slice/GrammarUtil.h | |
parent | file run.py was initially added on branch location. (diff) | |
download | ice-59788b8663f1f05a95b7afbbc6d2846dae11c96a.tar.bz2 ice-59788b8663f1f05a95b7afbbc6d2846dae11c96a.tar.xz ice-59788b8663f1f05a95b7afbbc6d2846dae11c96a.zip |
removed spaces after keywords
Diffstat (limited to 'cpp/src/Slice/GrammarUtil.h')
-rw-r--r-- | cpp/src/Slice/GrammarUtil.h | 270 |
1 files changed, 135 insertions, 135 deletions
diff --git a/cpp/src/Slice/GrammarUtil.h b/cpp/src/Slice/GrammarUtil.h index d26447b9fe6..6c59d265b8a 100644 --- a/cpp/src/Slice/GrammarUtil.h +++ b/cpp/src/Slice/GrammarUtil.h @@ -1,135 +1,135 @@ -// ********************************************************************** -// -// Copyright (c) 2001 -// MutableRealms, Inc. -// Huntsville, AL, USA -// -// All Rights Reserved -// -// ********************************************************************** - -#ifndef SLICE_GRAMMER_UTIL_H -#define SLICE_GRAMMER_UTIL_H - -#include <Slice/Parser.h> - -namespace Slice -{ - -class StringTok; -class StringListTok; -class TypeStringTok; -class TypeStringListTok; -class BoolTok; -class ExceptionListTok; -class ClassListTok; -class EnumeratorListTok; - -typedef ::IceUtil::Handle<StringTok> StringTokPtr; -typedef ::IceUtil::Handle<StringListTok> StringListTokPtr; -typedef ::IceUtil::Handle<TypeStringTok> TypeStringTokPtr; -typedef ::IceUtil::Handle<TypeStringListTok> TypeStringListTokPtr; -typedef ::IceUtil::Handle<BoolTok> BoolTokPtr; -typedef ::IceUtil::Handle<ExceptionListTok> ExceptionListTokPtr; -typedef ::IceUtil::Handle<ClassListTok> ClassListTokPtr; -typedef ::IceUtil::Handle<EnumeratorListTok> EnumeratorListTokPtr; - -// ---------------------------------------------------------------------- -// StringTok -// ---------------------------------------------------------------------- - -class SLICE_API StringTok : public GrammarBase -{ -public: - - StringTok() { } - std::string v; -}; - -// ---------------------------------------------------------------------- -// StringListTok -// ---------------------------------------------------------------------- - -class SLICE_API StringListTok : public GrammarBase -{ -public: - - StringListTok() { } - StringList v; -}; - -// ---------------------------------------------------------------------- -// TypeStringTok -// ---------------------------------------------------------------------- - -class SLICE_API TypeStringTok : public GrammarBase -{ -public: - - TypeStringTok() { } - TypeString v; -}; - -// ---------------------------------------------------------------------- -// TypeStringListTok -// ---------------------------------------------------------------------- - -class SLICE_API TypeStringListTok : public GrammarBase -{ -public: - - TypeStringListTok() { } - TypeStringList v; -}; - -// ---------------------------------------------------------------------- -// BoolTok -// ---------------------------------------------------------------------- - -class SLICE_API BoolTok : public GrammarBase -{ -public: - - BoolTok() { } - bool v; -}; - -// ---------------------------------------------------------------------- -// ExceptionListTok -// ---------------------------------------------------------------------- - -class SLICE_API ExceptionListTok : public GrammarBase -{ -public: - - ExceptionListTok() { } - ExceptionList v; -}; - -// ---------------------------------------------------------------------- -// ClassListTok -// ---------------------------------------------------------------------- - -class SLICE_API ClassListTok : public GrammarBase -{ -public: - - ClassListTok() { } - ClassList v; -}; - -// ---------------------------------------------------------------------- -// EnumeratorListTok -// ---------------------------------------------------------------------- - -class SLICE_API EnumeratorListTok : public GrammarBase -{ -public: - - EnumeratorListTok() { } - EnumeratorList v; -}; - -} - -#endif +// **********************************************************************
+//
+// Copyright (c) 2001
+// MutableRealms, Inc.
+// Huntsville, AL, USA
+//
+// All Rights Reserved
+//
+// **********************************************************************
+
+#ifndef SLICE_GRAMMER_UTIL_H
+#define SLICE_GRAMMER_UTIL_H
+
+#include <Slice/Parser.h>
+
+namespace Slice
+{
+
+class StringTok;
+class StringListTok;
+class TypeStringTok;
+class TypeStringListTok;
+class BoolTok;
+class ExceptionListTok;
+class ClassListTok;
+class EnumeratorListTok;
+
+typedef ::IceUtil::Handle<StringTok> StringTokPtr;
+typedef ::IceUtil::Handle<StringListTok> StringListTokPtr;
+typedef ::IceUtil::Handle<TypeStringTok> TypeStringTokPtr;
+typedef ::IceUtil::Handle<TypeStringListTok> TypeStringListTokPtr;
+typedef ::IceUtil::Handle<BoolTok> BoolTokPtr;
+typedef ::IceUtil::Handle<ExceptionListTok> ExceptionListTokPtr;
+typedef ::IceUtil::Handle<ClassListTok> ClassListTokPtr;
+typedef ::IceUtil::Handle<EnumeratorListTok> EnumeratorListTokPtr;
+
+// ----------------------------------------------------------------------
+// StringTok
+// ----------------------------------------------------------------------
+
+class SLICE_API StringTok : public GrammarBase
+{
+public:
+
+ StringTok() { }
+ std::string v;
+};
+
+// ----------------------------------------------------------------------
+// StringListTok
+// ----------------------------------------------------------------------
+
+class SLICE_API StringListTok : public GrammarBase
+{
+public:
+
+ StringListTok() { }
+ StringList v;
+};
+
+// ----------------------------------------------------------------------
+// TypeStringTok
+// ----------------------------------------------------------------------
+
+class SLICE_API TypeStringTok : public GrammarBase
+{
+public:
+
+ TypeStringTok() { }
+ TypeString v;
+};
+
+// ----------------------------------------------------------------------
+// TypeStringListTok
+// ----------------------------------------------------------------------
+
+class SLICE_API TypeStringListTok : public GrammarBase
+{
+public:
+
+ TypeStringListTok() { }
+ TypeStringList v;
+};
+
+// ----------------------------------------------------------------------
+// BoolTok
+// ----------------------------------------------------------------------
+
+class SLICE_API BoolTok : public GrammarBase
+{
+public:
+
+ BoolTok() { }
+ bool v;
+};
+
+// ----------------------------------------------------------------------
+// ExceptionListTok
+// ----------------------------------------------------------------------
+
+class SLICE_API ExceptionListTok : public GrammarBase
+{
+public:
+
+ ExceptionListTok() { }
+ ExceptionList v;
+};
+
+// ----------------------------------------------------------------------
+// ClassListTok
+// ----------------------------------------------------------------------
+
+class SLICE_API ClassListTok : public GrammarBase
+{
+public:
+
+ ClassListTok() { }
+ ClassList v;
+};
+
+// ----------------------------------------------------------------------
+// EnumeratorListTok
+// ----------------------------------------------------------------------
+
+class SLICE_API EnumeratorListTok : public GrammarBase
+{
+public:
+
+ EnumeratorListTok() { }
+ EnumeratorList v;
+};
+
+}
+
+#endif
|