diff options
author | Joe George <joe@zeroc.com> | 2019-03-05 16:19:05 -0500 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2019-03-05 16:19:05 -0500 |
commit | a59dab7c70149f08dcfb3d7af7036439934cf97b (patch) | |
tree | 19ef98ab4296586cfe526b1c14fa0eb460420e9c /cpp/src/slice2swift/SwiftUtil.cpp | |
parent | Fix the build (diff) | |
download | ice-a59dab7c70149f08dcfb3d7af7036439934cf97b.tar.bz2 ice-a59dab7c70149f08dcfb3d7af7036439934cf97b.tar.xz ice-a59dab7c70149f08dcfb3d7af7036439934cf97b.zip |
More InputStream/OutputStream updates
Diffstat (limited to 'cpp/src/slice2swift/SwiftUtil.cpp')
-rw-r--r-- | cpp/src/slice2swift/SwiftUtil.cpp | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/cpp/src/slice2swift/SwiftUtil.cpp b/cpp/src/slice2swift/SwiftUtil.cpp index 7a227d3bafb..ce5d8d98901 100644 --- a/cpp/src/slice2swift/SwiftUtil.cpp +++ b/cpp/src/slice2swift/SwiftUtil.cpp @@ -230,7 +230,6 @@ getAbsoluteImpl(const ContainedPtr& cont, const string& prefix = "", const strin } - void SwiftGenerator::writeConstantValue(IceUtilInternal::Output& out, const TypePtr& type, const SyntaxTreeBasePtr& valueType, const string& value, @@ -647,8 +646,22 @@ SwiftGenerator::writeMembers(IceUtilInternal::Output& out, } void -SwiftGenerator::writeMarshalUnmarshalCode(IceUtilInternal::Output&, const ClassDefPtr&, const OperationPtr&) +SwiftGenerator::writeMarshalUnmarshalCode(Output &out, + const TypePtr& type, + const string& param, + bool marshal) { + +} + +void +SwiftGenerator::writeOptionalMarshalUnmarshalCode(Output &out, + const TypePtr& type, + const string& param, + int tag, + bool marshal) +{ + } bool |