27 lines
346 B
C
Raw Normal View History

2014-08-03 19:52:23 +02:00
#ifndef LIBWIDGET_H
#define LIBWIDGET_H
#include <memory>
2020-02-01 23:06:01 +01:00
#include <QWidget>
2014-08-03 19:52:23 +02:00
#if QT_VERSION < QT_VERSION_CHECK(5, 3, 0)
2018-08-09 18:06:22 +02:00
# include <klocalizedstring.h>
2014-08-03 19:52:23 +02:00
#endif
#include "ui_libwidget.h"
class LibWidget : public QWidget
{
Q_OBJECT
public:
2016-07-09 11:21:54 +02:00
explicit LibWidget(QWidget* parent = 0);
2017-04-14 19:02:05 +02:00
~LibWidget();
2014-08-03 19:52:23 +02:00
private:
2017-04-14 19:02:05 +02:00
Ui::LibWidget* ui;
2014-08-03 19:52:23 +02:00
};
#endif