summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cpp/Gen.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-10-09 03:26:54 +0000
committerMarc Laukien <marc@zeroc.com>2001-10-09 03:26:54 +0000
commit5f01a4a9444e8fa9269a86ef403b2ca183fa9de5 (patch)
tree5f1de030386a81aa6a5d6d9e7b1d24322962f195 /cpp/src/slice2cpp/Gen.cpp
parentfixes (diff)
downloadice-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.cpp9
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)
{