blob: 22caa04677c3f04a39e13718971deea7ef670b34 (
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) ZeroC, Inc. All rights reserved.
r = IceInternal.Util.callWithResult('Ice_currentEncoding');
end
|