21 lines
263 B
C++
21 lines
263 B
C++
#ifndef TEST_H
|
|
#define TEST_H
|
|
|
|
#include "CCAPI.h"
|
|
|
|
class Test {
|
|
public:
|
|
Test();
|
|
void test();
|
|
private:
|
|
CTL::Socket socket;
|
|
CTL::Thread thread;
|
|
void test_socket();
|
|
void client_socket(CTL::Socket& socket);
|
|
void udp_socket();
|
|
};
|
|
|
|
|
|
|
|
#endif
|