X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=example-codegen%2Fclient.cpp;h=cdeb124f0ccf9dd5af71fd74743df9fe19884a19;hp=97d309e21020632c36cbe986698985a43a9f2d64;hb=1f5e9bdead71a72eb9c6b1945231f742bbccd728;hpb=29ba0e9777f576fa318decb2915bf8895bf233eb diff --git a/example-codegen/client.cpp b/example-codegen/client.cpp index 97d309e..cdeb124 100644 --- a/example-codegen/client.cpp +++ b/example-codegen/client.cpp @@ -7,7 +7,8 @@ #include // include library header -#include "codegen_client.hxx" +#include "default_client.hxx" +#include "other_client.hxx" int main(int argc, char** argv) { @@ -24,10 +25,15 @@ int main(int argc, char** argv) 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, 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; }