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