X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=examples%2Fminimalistic-client-stub.hxx;fp=examples%2Fminimalistic-client-stub.hxx;h=b17bacaf7e6e0b3c1792633cbe1e1f695c47b1f3;hp=0000000000000000000000000000000000000000;hb=db49c2f908cd5a007e21d27ba614eb4018f92efc;hpb=27cd718283ad61092e8bf1d874d8ce62e0131048 diff --git a/examples/minimalistic-client-stub.hxx b/examples/minimalistic-client-stub.hxx new file mode 100644 index 0000000..b17baca --- /dev/null +++ b/examples/minimalistic-client-stub.hxx @@ -0,0 +1,23 @@ +/* header file for the library that should be automatically generated */ + +#ifndef MINIMALISTIC_CLIENT_STUB_HXX +#define MINIMALISTIC_CLIENT_STUB_HXX + +#include + +class cmd_group_example_client : public libt2n::command_client +{ + public: + cmd_group_example_client(libt2n::client_connection &_c, + long long _command_timeout_usec=command_timeout_usec_default, + long long _hello_timeout_usec=hello_timeout_usec_default) + : libt2n::command_client(_c,_command_timeout_usec,_hello_timeout_usec) + { } + + std::string testfunc(const std::string& str); +}; + +void +extended_type_info_test(); + +#endif