You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
336 B
26 lines
336 B
11 years ago
|
|
||
|
#ifndef MYWIDGET_H
|
||
|
#define MYWIDGET_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include <memory>
|
||
|
|
||
|
#if QT_VERSION < QT_VERSION_CHECK(5, 3, 0)
|
||
|
#include <klocalizedstring.h>
|
||
|
#endif
|
||
|
|
||
|
#include "ui_mywidget.h"
|
||
|
|
||
|
class MyWidget : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
9 years ago
|
explicit MyWidget(QWidget* parent = 0);
|
||
8 years ago
|
~MyWidget();
|
||
11 years ago
|
|
||
|
private:
|
||
8 years ago
|
Ui::MyWidget* ui;
|
||
11 years ago
|
};
|
||
|
|
||
|
#endif
|