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