diff options
author | Mark Spruiell <mes@zeroc.com> | 2004-10-13 23:07:35 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2004-10-13 23:07:35 +0000 |
commit | 9b656338c2c25062a720cd77c99cb2c382ad8f57 (patch) | |
tree | c075333793f6ff904b5c98c4981198ca0a1c05cb /cpp/src/slice2java/Gen.h | |
parent | - Fixed bug where global metadata causes unmarshaling of an exception or (diff) | |
download | ice-9b656338c2c25062a720cd77c99cb2c382ad8f57.tar.bz2 ice-9b656338c2c25062a720cd77c99cb2c382ad8f57.tar.xz ice-9b656338c2c25062a720cd77c99cb2c382ad8f57.zip |
generate marker class to validate package properties
Diffstat (limited to 'cpp/src/slice2java/Gen.h')
-rw-r--r-- | cpp/src/slice2java/Gen.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cpp/src/slice2java/Gen.h b/cpp/src/slice2java/Gen.h index 10d167ef940..996d0f40229 100644 --- a/cpp/src/slice2java/Gen.h +++ b/cpp/src/slice2java/Gen.h @@ -110,6 +110,15 @@ private: virtual bool visitClassDefStart(const ClassDefPtr&); }; + class PackageVisitor : public JavaVisitor + { + public: + + PackageVisitor(const std::string&); + + virtual bool visitModuleStart(const ModulePtr&); + }; + class TypesVisitor : public JavaVisitor { public: |