diff options
author | Marc Laukien <marc@zeroc.com> | 2001-10-09 03:26:54 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-10-09 03:26:54 +0000 |
commit | 5f01a4a9444e8fa9269a86ef403b2ca183fa9de5 (patch) | |
tree | 5f1de030386a81aa6a5d6d9e7b1d24322962f195 /cpp/src/slice2cpp | |
parent | fixes (diff) | |
download | ice-5f01a4a9444e8fa9269a86ef403b2ca183fa9de5.tar.bz2 ice-5f01a4a9444e8fa9269a86ef403b2ca183fa9de5.tar.xz ice-5f01a4a9444e8fa9269a86ef403b2ca183fa9de5.zip |
removed pickler, native
Diffstat (limited to 'cpp/src/slice2cpp')
-rw-r--r-- | cpp/src/slice2cpp/Gen.cpp | 9 | ||||
-rw-r--r-- | cpp/src/slice2cpp/Gen.h | 1 |
2 files changed, 0 insertions, 10 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp index ef56592422f..50bef5c31e1 100644 --- a/cpp/src/slice2cpp/Gen.cpp +++ b/cpp/src/slice2cpp/Gen.cpp @@ -434,15 +434,6 @@ Slice::Gen::TypesVisitor::visitEnum(const EnumPtr& p) C << eb; } -void -Slice::Gen::TypesVisitor::visitNative(const NativePtr& p) -{ - string name = p->name(); - - H << sp; - H << nl << "typedef ::IceNative::" << name << ' ' << name << ';'; -} - Slice::Gen::ProxyDeclVisitor::ProxyDeclVisitor(Output& h, Output& c, const string& dllExport) : H(h), C(c), _dllExport(dllExport) { diff --git a/cpp/src/slice2cpp/Gen.h b/cpp/src/slice2cpp/Gen.h index 024f202a12e..d63e253293b 100644 --- a/cpp/src/slice2cpp/Gen.h +++ b/cpp/src/slice2cpp/Gen.h @@ -57,7 +57,6 @@ private: virtual void visitSequence(const SequencePtr&); virtual void visitDictionary(const DictionaryPtr&); virtual void visitEnum(const EnumPtr&); - virtual void visitNative(const NativePtr&); virtual void visitDataMember(const DataMemberPtr&); private: |