cleanup
[libt2n] / examples / minimalistic-client-stub.hxx
1 /* header file for the library that should be automatically generated */
2
3 #ifndef MINIMALISTIC_CLIENT_STUB_HXX
4 #define MINIMALISTIC_CLIENT_STUB_HXX
5
6 #include <command_client.hxx>
7
8 class cmd_group_example_client : public libt2n::command_client
9 {
10     public:
11         cmd_group_example_client(libt2n::client_connection &_c, 
12             long long _command_timeout_usec=command_timeout_usec_default,
13             long long _hello_timeout_usec=hello_timeout_usec_default)
14             : libt2n::command_client(_c,_command_timeout_usec,_hello_timeout_usec)
15             { }
16
17         std::string testfunc(const std::string& str);
18 };
19
20 void
21 extended_type_info_test();
22
23 #endif