25 lines
293 B
C
25 lines
293 B
C
|
#ifndef OKSIRC_UI_H
|
||
|
#define OKSIRC_UI_H
|
||
|
|
||
|
#include <QtWidgets>
|
||
|
|
||
|
class ui : public QObject {
|
||
|
public:
|
||
|
ui(int, char **);
|
||
|
|
||
|
int exec();
|
||
|
void sendButtonClicked(bool);
|
||
|
|
||
|
|
||
|
QPlainTextEdit *mainLog;
|
||
|
|
||
|
private:
|
||
|
QApplication *app;
|
||
|
QWidget *mainWindow;
|
||
|
QLineEdit *textEntry;
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //OKSIRC_UI_H
|