Files
checker_host/interface/if_tcp.h

18 lines
209 B
C
Raw Normal View History

2023-11-21 20:28:23 +08:00
#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