blob: 98e0a2e29ccf5b6c434ec0d1c10a5c09fd3b2fbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
%{
**********************************************************************
Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
This copy of Ice is licensed to you under the terms described in the
ICE_LICENSE file included in this distribution.
**********************************************************************
%}
classdef Client < Application
methods
function r = run(obj, args)
AllTests.allTests(obj);
r = 0;
end
end
methods(Static)
function status = start(args)
addpath('generated');
if ~libisloaded('icematlab')
loadlibrary('icematlab')
end
c = Client();
status = c.main('Client', args);
end
end
end
|