blob: d52d55b079cbde20b236f0d7f938c90d34898a0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
function r = stringToIdentity(s)
% stringToIdentity Converts a string to an object identity.
%
% Parameters:
% s (char) - The string to convert.
%
% Returns (Ice.Identity) - The converted object identity.
% Copyright (c) ZeroC, Inc. All rights reserved.
r = IceInternal.Util.callWithResult('Ice_stringToIdentity', s);
end
|