Switch time() calls to monotonic clock calls (#7597)
[libt2n] / examples-codegen / example2-client / client.cpp
CommitLineData
208db683 1/*
f6d1a1e3
GE
2 Copyright (C) 2006
3 intra2net.com
208db683
JT
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18*/
19#include <socket_client.hxx>
20
21// include generated library header
22#include "default_client.hxx"
23
24int main(int argc, char** argv)
25{
26 libt2n::socket_client_connection sc("./socket");
f6d1a1e3 27 cmd_group_default_client cc(&sc);
208db683
JT
28
29 bool throwok=false;
30 try
31 {
32 cc.testfunc("throw");
33 }catch(libt2n::t2n_runtime_error &e){
34 throwok=(std::string(e.what())=="throw me around");
35 }
36
37 return ( throwok
38 && ( cc.testfunc("hello") == "hello, testfunc() was here" )
39 && ( cc.testfunc_ref("hello") == "hello, testfunc() was here" )
40 && ( cc.t2(10) == 10 ) )
41 ? EXIT_SUCCESS : EXIT_FAILURE;
42}