diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-02-09 13:46:29 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-02-09 13:46:29 +0000 |
commit | 70a31bfd6d76baf43d2927c9b8e1962545624a86 (patch) | |
tree | cddd24c7ab8c9dcb7ae1e6eb95678dfcaaba38ad /cpp/src/slice2cppe/Gen.h | |
parent | Workaround for Sun compiler issues (diff) | |
download | ice-70a31bfd6d76baf43d2927c9b8e1962545624a86.tar.bz2 ice-70a31bfd6d76baf43d2927c9b8e1962545624a86.tar.xz ice-70a31bfd6d76baf43d2927c9b8e1962545624a86.zip |
Use metadata to specify includes
Diffstat (limited to 'cpp/src/slice2cppe/Gen.h')
-rw-r--r-- | cpp/src/slice2cppe/Gen.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cpp/src/slice2cppe/Gen.h b/cpp/src/slice2cppe/Gen.h index b1d9406a7ce..4e446743fe1 100644 --- a/cpp/src/slice2cppe/Gen.h +++ b/cpp/src/slice2cppe/Gen.h @@ -61,6 +61,21 @@ private: std::string _dllExport; bool _impl; + class GlobalIncludeVisitor : private ::IceUtil::noncopyable, public ParserVisitor + { + public: + + GlobalIncludeVisitor(::IceUtil::Output&); + + virtual bool visitModuleStart(const ModulePtr&); + + private: + + ::IceUtil::Output& H; + + bool _finished; + }; + class TypesVisitor : private ::IceUtil::noncopyable, public ParserVisitor { public: |