blob: 81f84a6aaa1cd970a41d1c74b6657bbed815eefc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
function r = stringVersion()
% stringVersion Returns the Ice version in the form A.B.C, where A
% indicates the major version, B indicates the minor version, and
% C indicates the patch level.
%
% Returns (char) - The Ice version.
% Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
r = IceInternal.Util.callWithResult('Ice_stringVersion');
end
|