diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-03-29 17:30:19 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-03-29 17:30:19 +0000 |
commit | dc15f759734848a12e9cf55110c2f34dd510f91d (patch) | |
tree | 54d16f67b41576f98d40933cd6f235868970f520 /cpp/include/Slice/CPlusPlusUtil.h | |
parent | Include fixes (diff) | |
download | ice-dc15f759734848a12e9cf55110c2f34dd510f91d.tar.bz2 ice-dc15f759734848a12e9cf55110c2f34dd510f91d.tar.xz ice-dc15f759734848a12e9cf55110c2f34dd510f91d.zip |
Added support for wstring slice metadata
Diffstat (limited to 'cpp/include/Slice/CPlusPlusUtil.h')
-rw-r--r-- | cpp/include/Slice/CPlusPlusUtil.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/cpp/include/Slice/CPlusPlusUtil.h b/cpp/include/Slice/CPlusPlusUtil.h index 279cdd3319b..516212a6e7a 100644 --- a/cpp/include/Slice/CPlusPlusUtil.h +++ b/cpp/include/Slice/CPlusPlusUtil.h @@ -27,10 +27,10 @@ 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&, const StringList& = StringList(), bool = true); -SLICE_API std::string returnTypeToString(const TypePtr&, const StringList& = StringList()); -SLICE_API std::string inputTypeToString(const TypePtr&, const StringList& = StringList(), bool = true); -SLICE_API std::string outputTypeToString(const TypePtr&, const StringList& = StringList()); +SLICE_API std::string typeToString(const TypePtr&, bool, const StringList& = StringList(), bool = true); +SLICE_API std::string returnTypeToString(const TypePtr&, bool, const StringList& = StringList()); +SLICE_API std::string inputTypeToString(const TypePtr&, bool, const StringList& = StringList(), bool = true); +SLICE_API std::string outputTypeToString(const TypePtr&, bool, const StringList& = StringList()); SLICE_API std::string operationModeToString(Operation::Mode); SLICE_API std::string fixKwd(const std::string&); @@ -43,10 +43,11 @@ SLICE_API void writeMarshalCode(::IceUtil::Output&, const ParamDeclList&, const SLICE_API void writeUnmarshalCode(::IceUtil::Output&, const ParamDeclList&, const TypePtr&, const StringList&, bool = false); SLICE_API void writeAllocateCode(::IceUtil::Output&, const ParamDeclList&, const TypePtr&, - const StringList&, bool = false); + const StringList&, bool = false, bool = false); SLICE_API void writeStreamMarshalUnmarshalCode(::IceUtil::Output&, const TypePtr&, const std::string&, bool, - const std::string& = "", const StringList& = StringList()); + const std::string& = "", bool = false, const StringList& = StringList()); SLICE_API std::string findMetaData(const StringList&, bool); +SLICE_API bool inWstringModule(const SequencePtr&); } |