summaryrefslogtreecommitdiff
path: root/cpp/include/Slice/CPlusPlusUtil.h
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-02-06 14:21:00 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-02-06 14:21:00 +0000
commit79496603519f5356862f5bd537dd0b161d33d4be (patch)
tree9d445c1157b839098e3276dcaa10328b00866fc2 /cpp/include/Slice/CPlusPlusUtil.h
parentFixed one-shot constructors. (diff)
downloadice-79496603519f5356862f5bd537dd0b161d33d4be.tar.bz2
ice-79496603519f5356862f5bd537dd0b161d33d4be.tar.xz
ice-79496603519f5356862f5bd537dd0b161d33d4be.zip
Added support for alternate sequences Added custom test
Diffstat (limited to 'cpp/include/Slice/CPlusPlusUtil.h')
-rw-r--r--cpp/include/Slice/CPlusPlusUtil.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/cpp/include/Slice/CPlusPlusUtil.h b/cpp/include/Slice/CPlusPlusUtil.h
index 19156d82686..3cdd06c36bb 100644
--- a/cpp/include/Slice/CPlusPlusUtil.h
+++ b/cpp/include/Slice/CPlusPlusUtil.h
@@ -39,17 +39,13 @@ SLICE_API void writeMarshalUnmarshalCode(::IceUtil::Output&, const TypePtr&, con
const std::string& = "", bool = true, const StringList& = StringList(),
bool = false);
SLICE_API void writeMarshalCode(::IceUtil::Output&, const ParamDeclList&, const TypePtr&,
- const StringList& = StringList(), bool = false);
+ const StringList&, bool = false);
SLICE_API void writeUnmarshalCode(::IceUtil::Output&, const ParamDeclList&, const TypePtr&,
- const StringList& = StringList(), bool = false);
+ const StringList&, bool = false);
SLICE_API void writeAllocateCode(::IceUtil::Output&, const ParamDeclList&, const TypePtr&,
- const StringList& = StringList(), bool = false);
+ const StringList&, bool = false);
SLICE_API void writeStreamMarshalUnmarshalCode(::IceUtil::Output&, const TypePtr&, const std::string&, bool,
- const std::string& = "");
-SLICE_API void writeStreamMarshalCode(::IceUtil::Output&, const std::list<std::pair<TypePtr, std::string> >&,
- const TypePtr&);
-SLICE_API void writeStreamUnmarshalCode(::IceUtil::Output&, const std::list<std::pair<TypePtr, std::string> >&,
- const TypePtr&);
+ const std::string& = "", const StringList& = StringList());
SLICE_API std::string findMetaData(const StringList&, bool);
}