blob: a27a0ce405591f87ade18f7fc482e8e000352ad5 (
plain)
1
2
3
4
5
6
7
8
9
|
function r = currentProtocolEncoding()
% currentProtocolEncoding Returns the encoding version for the Ice protocol.
%
% Returns (Ice.EncodingVersion) - The encoding version for the Ice protocol.
% Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
r = IceInternal.Util.callWithResult('Ice_currentProtocolEncoding');
end
|