/*! * @file network_unit_test.h * A network unit test modules: to test the the network lib without starting orxonox */ /* you will want to add such a a line at your header file also, since it will prevent c++ from including your code twice*/ #ifndef _NETWORK_UNIT_TEST_H #define _NETWORK_UNIT_TEST_H class NetworkUnitTest { public: NetworkUnitTest(); ~NetworkUnitTest(); void start(); void stop(); }; #endif /* _NETWORK_UNIT_TEST */