tcp.h 391 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // Created by huli on 2022/12/27.
  3. //
  4. #ifndef NNXX_TESTS_TCP_H
  5. #define NNXX_TESTS_TCP_H
  6. class Tcp
  7. {
  8. public:
  9. Tcp();
  10. Tcp(const Tcp& other)= default;
  11. Tcp& operator =(const Tcp& other)= default;
  12. ~Tcp();
  13. public://API functions
  14. public://get or set member variable
  15. protected://member functions
  16. protected://member variable
  17. private:
  18. };
  19. #endif //NNXX_TESTS_TCP_H