summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cpp/Gen.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-11-06 13:20:13 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-11-06 13:20:13 +0000
commitb388d34e82cdd68fcde8e5831aa5efcbb4bd2760 (patch)
tree74c4175c7d5574334c73f2401c9802f272daac84 /cpp/src/slice2cpp/Gen.cpp
parentFixed ref counting bug (diff)
downloadice-b388d34e82cdd68fcde8e5831aa5efcbb4bd2760.tar.bz2
ice-b388d34e82cdd68fcde8e5831aa5efcbb4bd2760.tar.xz
ice-b388d34e82cdd68fcde8e5831aa5efcbb4bd2760.zip
Bug 1526
Diffstat (limited to 'cpp/src/slice2cpp/Gen.cpp')
-rw-r--r--cpp/src/slice2cpp/Gen.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp
index 8919a5e9d69..f4dc26876f4 100644
--- a/cpp/src/slice2cpp/Gen.cpp
+++ b/cpp/src/slice2cpp/Gen.cpp
@@ -4095,10 +4095,10 @@ Slice::Gen::HandleVisitor::visitClassDecl(const ClassDeclPtr& p)
H << nl << _dllExport << "void ice_read" << name << "(const ::Ice::InputStreamPtr&, " << name << "Ptr&);";
}
- H << sp << nl << "void __addObject(const " << name << "Ptr&, ::IceInternal::GCCountMap&);";
- H << nl << "bool __usesClasses(const " << name << "Ptr&);";
- H << nl << "void __decRefUnsafe(const " << name << "Ptr&);";
- H << nl << "void __clearHandleUnsafe(" << name << "Ptr&);";
+ H << sp << nl << _dllExport << "void __addObject(const " << name << "Ptr&, ::IceInternal::GCCountMap&);";
+ H << nl << _dllExport << "bool __usesClasses(const " << name << "Ptr&);";
+ H << nl << _dllExport << "void __decRefUnsafe(const " << name << "Ptr&);";
+ H << nl << _dllExport << "void __clearHandleUnsafe(" << name << "Ptr&);";
}
}