diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-01-04 16:41:15 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-01-04 16:41:15 +0000 |
commit | 27bd980c8433c670d553ac585d6e738ddd024d8b (patch) | |
tree | 1e966b989d5bb2ceaaa6970eeb162c377331a0e5 /cpp/include/Slice/CPlusPlusUtil.h | |
parent | Added zero copy byte sequence read function (diff) | |
download | ice-27bd980c8433c670d553ac585d6e738ddd024d8b.tar.bz2 ice-27bd980c8433c670d553ac585d6e738ddd024d8b.tar.xz ice-27bd980c8433c670d553ac585d6e738ddd024d8b.zip |
Added support for ["cpp:array"] to slice2cppe
Diffstat (limited to 'cpp/include/Slice/CPlusPlusUtil.h')
-rw-r--r-- | cpp/include/Slice/CPlusPlusUtil.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cpp/include/Slice/CPlusPlusUtil.h b/cpp/include/Slice/CPlusPlusUtil.h index 78b2861ed13..e4f33fced2c 100644 --- a/cpp/include/Slice/CPlusPlusUtil.h +++ b/cpp/include/Slice/CPlusPlusUtil.h @@ -27,16 +27,16 @@ SLICE_API void printHeader(::IceUtil::Output&); SLICE_API void printVersionCheck(::IceUtil::Output&); SLICE_API void printDllExportStuff(::IceUtil::Output&, const std::string&); -SLICE_API std::string typeToString(const TypePtr&); +SLICE_API std::string typeToString(const TypePtr&, const StringList& = StringList()); SLICE_API std::string returnTypeToString(const TypePtr&); -SLICE_API std::string inputTypeToString(const TypePtr&); +SLICE_API std::string inputTypeToString(const TypePtr&, const StringList& = StringList()); SLICE_API std::string outputTypeToString(const TypePtr&); SLICE_API std::string operationModeToString(Operation::Mode); SLICE_API std::string fixKwd(const std::string&); SLICE_API void writeMarshalUnmarshalCode(::IceUtil::Output&, const TypePtr&, const std::string&, bool, - const std::string& = "", bool = true); + const std::string& = "", bool = true, const StringList& = StringList()); SLICE_API void writeMarshalCode(::IceUtil::Output&, const std::list<std::pair<TypePtr, std::string> >&, const TypePtr&); SLICE_API void writeUnmarshalCode(::IceUtil::Output&, const std::list<std::pair<TypePtr, std::string> >&, @@ -49,6 +49,7 @@ SLICE_API void writeStreamMarshalCode(::IceUtil::Output&, const std::list<std::p const TypePtr&); SLICE_API void writeStreamUnmarshalCode(::IceUtil::Output&, const std::list<std::pair<TypePtr, std::string> >&, const TypePtr&); +SLICE_API std::string findMetaData(const StringList&); } |