diff options
Diffstat (limited to 'cpp/src/Slice/GrammarUtil.h')
-rw-r--r-- | cpp/src/Slice/GrammarUtil.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cpp/src/Slice/GrammarUtil.h b/cpp/src/Slice/GrammarUtil.h index 378901df888..f71e0dc961f 100644 --- a/cpp/src/Slice/GrammarUtil.h +++ b/cpp/src/Slice/GrammarUtil.h @@ -26,6 +26,7 @@ class ExceptionListTok; class ClassListTok; class EnumeratorListTok; class ConstDefTok; +class DataMemberDefTok; typedef ::IceUtil::Handle<StringTok> StringTokPtr; typedef ::IceUtil::Handle<StringListTok> StringListTokPtr; @@ -38,6 +39,7 @@ typedef ::IceUtil::Handle<ExceptionListTok> ExceptionListTokPtr; typedef ::IceUtil::Handle<ClassListTok> ClassListTokPtr; typedef ::IceUtil::Handle<EnumeratorListTok> EnumeratorListTokPtr; typedef ::IceUtil::Handle<ConstDefTok> ConstDefTokPtr; +typedef ::IceUtil::Handle<DataMemberDefTok> DataMemberDefTokPtr; // ---------------------------------------------------------------------- // StringTok @@ -174,6 +176,18 @@ public: ConstDef v; }; +// ---------------------------------------------------------------------- +// DataMemberDefTok +// ---------------------------------------------------------------------- + +class SLICE_API DataMemberDefTok : public GrammarBase +{ +public: + + DataMemberDefTok() { } + DataMemberDef v; +}; + } // |