try to find workaround for old automake
[libt2n] / example-libusage / client.cpp
CommitLineData
7f435356
JT
1/***************************************************************************
2 * Copyright (C) 2004 by Intra2net AG *
3 * info@intra2net.com *
4 * *
5 ***************************************************************************/
6
7#include <socket_client.hxx>
8
9// include generated library header
10#include "default_client.hxx"
11
12int main(int argc, char** argv)
13{
14 libt2n::socket_client_connection sc("./socket");
15 cmd_group_default_client cc(sc);
16
17 bool throwok=false;
18 try
19 {
20 cc.testfunc("throw");
21 }catch(libt2n::t2n_runtime_error &e){
22 throwok=(std::string(e.what())=="throw me around");
23 }
24
25 return ( throwok
26 && ( cc.testfunc("hello") == "hello, testfunc() was here" )
27 && ( cc.testfunc_ref("hello") == "hello, testfunc() was here" )
28 && ( cc.t2(10) == 10 ) )
29 ? EXIT_SUCCESS : EXIT_FAILURE;
30}