X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=example-codegen%2Fclient.cpp;h=1029abeb7fa67ea1c3e4cc269e4260b218a2f4a4;hp=6dee37eb7378fab8b6d358fc17374903322b724e;hb=7eb34f4dcd6b5eba1846bce22e95d54418b2e34e;hpb=ae2e9f1ba225b06d69f29820c50cf001625181e1 diff --git a/example-codegen/client.cpp b/example-codegen/client.cpp index 6dee37e..1029abe 100644 --- a/example-codegen/client.cpp +++ b/example-codegen/client.cpp @@ -6,13 +6,34 @@ #include -// include library header -#include "codegen_client.hxx" +// include generated library headers +#include "default_client.hxx" +#include "other_client.hxx" int main(int argc, char** argv) { libt2n::socket_client_connection sc("./socket"); + libt2n::socket_client_connection sc_other("./socket_other"); cmd_group_default_client cc(sc); + cmd_group_other_client cc_other(sc_other); - return (cc.testfunc("hello")=="hello, testfunc() was here") ? EXIT_SUCCESS : EXIT_FAILURE; + bool throwok=false; + try + { + cc.testfunc("throw"); + }catch(libt2n::t2n_runtime_error &e){ + throwok=(std::string(e.what())=="throw me around"); + } + + Foo foo={10,10}; + + return ( throwok + && ( cc.testfunc("hello") == "hello, testfunc() was here" ) + && ( cc.testfunc_ref("hello") == "hello, testfunc() was here" ) + && ( cc.t2(10) == 10 ) + && ( cc_other.t3(10, 20, "hello", std::pair(10,20)) ) + && ( cc_other.t3(10) == 10 ) + && ( cc_other.t3(std::vector(1,10)) ) + && ( cc_other.t3(foo) ) ) + ? EXIT_SUCCESS : EXIT_FAILURE; }