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
343 B
26 lines
343 B
11 years ago
|
|
||
|
#ifndef LIBWIDGET_H
|
||
|
#define LIBWIDGET_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include <memory>
|
||
|
|
||
|
#if QT_VERSION < QT_VERSION_CHECK(5, 3, 0)
|
||
|
#include <klocalizedstring.h>
|
||
|
#endif
|
||
|
|
||
|
#include "ui_libwidget.h"
|
||
|
|
||
|
class LibWidget : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
9 years ago
|
explicit LibWidget(QWidget* parent = 0);
|
||
8 years ago
|
~LibWidget();
|
||
11 years ago
|
|
||
|
private:
|
||
8 years ago
|
Ui::LibWidget* ui;
|
||
11 years ago
|
};
|
||
|
|
||
|
#endif
|