summaryrefslogtreecommitdiff
path: root/cpp/include/Slice/CPlusPlusUtil.h
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-10-14 22:07:51 +0000
committerMarc Laukien <marc@zeroc.com>2001-10-14 22:07:51 +0000
commite3391e10721a7bbe8c867d1c798fcf6d24a67308 (patch)
treedbab6b044338c6e7a920eb72e8c9d3b4cbd07f56 /cpp/include/Slice/CPlusPlusUtil.h
parentfixes (diff)
downloadice-e3391e10721a7bbe8c867d1c798fcf6d24a67308.tar.bz2
ice-e3391e10721a7bbe8c867d1c798fcf6d24a67308.tar.xz
ice-e3391e10721a7bbe8c867d1c798fcf6d24a67308.zip
win and other fixes
Diffstat (limited to 'cpp/include/Slice/CPlusPlusUtil.h')
-rw-r--r--cpp/include/Slice/CPlusPlusUtil.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/cpp/include/Slice/CPlusPlusUtil.h b/cpp/include/Slice/CPlusPlusUtil.h
index e81f32f0122..a313b34b76c 100644
--- a/cpp/include/Slice/CPlusPlusUtil.h
+++ b/cpp/include/Slice/CPlusPlusUtil.h
@@ -19,24 +19,24 @@ namespace Slice
struct ToIfdef
{
- char operator()(char);
+ SLICE_API char operator()(char);
};
-std::string changeInclude(const std::string&, const std::vector<std::string>&);
-void printHeader(Output&);
-void printVersionCheck(Output&);
-void printDllExportStuff(Output&, const std::string&);
+SLICE_API std::string changeInclude(const std::string&, const std::vector<std::string>&);
+SLICE_API void printHeader(Output&);
+SLICE_API void printVersionCheck(Output&);
+SLICE_API void printDllExportStuff(Output&, const std::string&);
-std::string typeToString(const TypePtr&);
-std::string returnTypeToString(const TypePtr&);
-std::string inputTypeToString(const TypePtr&);
-std::string outputTypeToString(const TypePtr&);
+SLICE_API std::string typeToString(const TypePtr&);
+SLICE_API std::string returnTypeToString(const TypePtr&);
+SLICE_API std::string inputTypeToString(const TypePtr&);
+SLICE_API std::string outputTypeToString(const TypePtr&);
-void writeMarshalUnmarshalCode(Output&, const TypePtr&, const std::string&, bool, const std::string& = "",
+SLICE_API void writeMarshalUnmarshalCode(Output&, const TypePtr&, const std::string&, bool, const std::string& = "",
bool = true);
-void writeMarshalCode(Output&, const std::list<std::pair<TypePtr, std::string> >&, const TypePtr&);
-void writeUnmarshalCode(Output&, const std::list<std::pair<TypePtr, std::string> >&, const TypePtr&);
-void writeAllocateCode(Output&, const std::list<std::pair<TypePtr, std::string> >&, const TypePtr&);
+SLICE_API void writeMarshalCode(Output&, const std::list<std::pair<TypePtr, std::string> >&, const TypePtr&);
+SLICE_API void writeUnmarshalCode(Output&, const std::list<std::pair<TypePtr, std::string> >&, const TypePtr&);
+SLICE_API void writeAllocateCode(Output&, const std::list<std::pair<TypePtr, std::string> >&, const TypePtr&);
}