blob: 57f3953273f006b40dc4621b206e9520b6a40ef8 (
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) 2003-2017 ZeroC, Inc. All rights reserved.
r = IceInternal.Util.callWithResult('Ice_stringToIdentity', s);
end
|