mirror of
https://github.com/Indy970/QtHPConnect
synced 2024-12-27 21:59:29 +01:00
22 lines
291 B
C++
22 lines
291 B
C++
#ifndef TEXTEDITOR_H
|
|
#define TEXTEDITOR_H
|
|
|
|
#include <QDockWidget>
|
|
|
|
namespace Ui {
|
|
class textEditor;
|
|
}
|
|
|
|
class textEditor : public QDockWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit textEditor(QWidget *parent = 0);
|
|
~textEditor();
|
|
|
|
private:
|
|
Ui::textEditor *ui;
|
|
};
|
|
|
|
#endif // TEXTEDITOR_H
|