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