2020-02-01 23:06:01 +01:00

27 lines
346 B
C++

#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