添加一些基本类

This commit is contained in:
andy
2023-11-21 20:28:23 +08:00
commit b1b69d307f
21 changed files with 1453 additions and 0 deletions

17
interface/if_tcp.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef IF_TCP_H
#define IF_TCP_H
#include <QObject>
#include <interface/interface.h>
class if_tcp : public InterFace
{
Q_OBJECT
public:
if_tcp();
virtual ~if_tcp();
protected:
};
#endif // IF_TCP_H