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/Gen.cpp | |
parent | fixes (diff) | |
download | ice-5f01a4a9444e8fa9269a86ef403b2ca183fa9de5.tar.bz2 ice-5f01a4a9444e8fa9269a86ef403b2ca183fa9de5.tar.xz ice-5f01a4a9444e8fa9269a86ef403b2ca183fa9de5.zip |
removed pickler, native
Diffstat (limited to 'cpp/src/slice2cpp/Gen.cpp')
-rw-r--r-- | cpp/src/slice2cpp/Gen.cpp | 9 |
1 files changed, 0 insertions, 9 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) { |