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