blob: 2eb39114d60e66b8bf64fa0635e6f8f25263e537 (
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-present ZeroC, Inc. All rights reserved.
r = IceInternal.Util.callWithResult('Ice_currentProtocolEncoding');
end
|