More clean-ups and cool template stuff
[invirt/third/libt4.git] / rsmtest_client.h
1 // rsmtest client interface.
2
3 #ifndef rsmtest_client_h
4 #define rsmtest_client_h
5
6 #include <string>
7 #include "rsm_protocol.h"
8 #include "rpc/rpc.h"
9
10 // Client interface to the rsmtest server
11 class rsmtest_client {
12     protected:
13         rpcc cl;
14     public:
15         rsmtest_client(std::string d);
16         virtual ~rsmtest_client() {}
17         virtual rsm_test_protocol::status net_repair(int heal);
18         virtual rsm_test_protocol::status breakpoint(int b);
19 };
20 #endif