18 lines
209 B
C++
18 lines
209 B
C++
#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
|