LRT13  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
NetServerUnitTest.h
1 #ifndef NET_SERVER_TEST_H_
2 #define NET_TEST_H_
3 
4 #include <cmath>
5 
6 #include <vxWorks.h>
7 #include <sysLib.h>
8 
9 #include "UnitTest.h"
10 
11 #include "../Network/NetServer.h"
12 #include "../Network/NetPeer.h"
13 #include "../Network/NetBuffer.h"
14 #include "../Network/MessageType.h"
15 
16 using namespace Network;
17 
18 class NetServerUnitTest : public UnitTest
19 {
20 public:
21  NetServerUnitTest();
22  void Run();
23 private:
24  NetServer* m_conn;
25 };
26 
27 #endif