Line | |
---|
1 | /*! |
---|
2 | * @file network_unit_test.h |
---|
3 | * A network unit test modules: to test the the network lib without starting orxonox |
---|
4 | */ |
---|
5 | |
---|
6 | /* you will want to add such a a line at your header file also, since it will |
---|
7 | prevent c++ from including your code twice*/ |
---|
8 | #ifndef _NETWORK_UNIT_TEST_H |
---|
9 | #define _NETWORK_UNIT_TEST_H |
---|
10 | |
---|
11 | |
---|
12 | |
---|
13 | class NetworkUnitTest |
---|
14 | { |
---|
15 | public: |
---|
16 | NetworkUnitTest(); |
---|
17 | virtual ~NetworkUnitTest(); |
---|
18 | |
---|
19 | void start(); |
---|
20 | void stop(); |
---|
21 | |
---|
22 | }; |
---|
23 | |
---|
24 | #endif /* _NETWORK_UNIT_TEST */ |
---|
Note: See
TracBrowser
for help on using the repository browser.