23 lines
359 B
C
23 lines
359 B
C
|
#ifndef TESTWIN_H
|
||
|
#define TESTWIN_H
|
||
|
|
||
|
#include <QTextEdit>
|
||
|
|
||
|
class TestWin : public QWidget {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit TestWin(QWidget* parent);
|
||
|
~TestWin();
|
||
|
|
||
|
QList<QTextEdit *> fdReceives;
|
||
|
};
|
||
|
|
||
|
class TestPanel : public QWidget {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit TestPanel(QWidget* parent = 0);
|
||
|
QTextEdit *fdReceive;
|
||
|
};
|
||
|
|
||
|
#endif // TESTWIN_H
|