diff options
author | Mark Spruiell <mes@zeroc.com> | 2002-09-18 21:00:15 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2002-09-18 21:00:15 +0000 |
commit | bc55c2fa8a3498c000660ab6123b2e99c101b7cd (patch) | |
tree | ae1c7333a4faee12cc8ff7f82b4dfc078c30c937 /cpp/src/slice2java/Gen.h | |
parent | clone is no longer optional (diff) | |
download | ice-bc55c2fa8a3498c000660ab6123b2e99c101b7cd.tar.bz2 ice-bc55c2fa8a3498c000660ab6123b2e99c101b7cd.tar.xz ice-bc55c2fa8a3498c000660ab6123b2e99c101b7cd.zip |
simplified cloning; clone is no longer optional
Diffstat (limited to 'cpp/src/slice2java/Gen.h')
-rw-r--r-- | cpp/src/slice2java/Gen.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/cpp/src/slice2java/Gen.h b/cpp/src/slice2java/Gen.h index 81895d21b14..abe8acac77f 100644 --- a/cpp/src/slice2java/Gen.h +++ b/cpp/src/slice2java/Gen.h @@ -67,8 +67,7 @@ public: const std::string&, const std::vector<std::string>&, const std::string&, - const std::string&, - bool); + const std::string&); ~Gen(); bool operator!() const; // Returns true if there was a constructor error @@ -84,7 +83,6 @@ private: std::vector<std::string> _includePaths; std::string _package; std::string _dir; - bool _clone; class OpsVisitor : public JavaVisitor { @@ -110,7 +108,7 @@ private: { public: - TypesVisitor(const std::string&, const std::string&, bool); + TypesVisitor(const std::string&, const std::string&); virtual bool visitClassDefStart(const ClassDefPtr&); virtual void visitClassDefEnd(const ClassDefPtr&); @@ -121,10 +119,6 @@ private: virtual void visitEnum(const EnumPtr&); virtual void visitConstDef(const ConstDefPtr&); virtual void visitDataMember(const DataMemberPtr&); - - private: - - bool _clone; }; class HolderVisitor : public JavaVisitor |