CC_SDK/Test/Test.h

21 lines
263 B
C
Raw Normal View History

2025-04-25 19:37:53 +08:00
#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