mirror of
https://github.com/YACReader/yacreader
synced 2025-05-25 18:00:46 -04:00
19 lines
324 B
C++
19 lines
324 B
C++
#ifndef NO_LIBRARIES_WIDGET_H
|
|
#define NO_LIBRARIES_WIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
class NoLibrariesWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit NoLibrariesWidget(QWidget *parent = nullptr);
|
|
|
|
signals:
|
|
void createNewLibrary();
|
|
void addExistingLibrary();
|
|
public slots:
|
|
};
|
|
|
|
#endif // NO_LIBRARIES_WIDGET_H
|