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