mirror of
https://github.com/YACReader/yacreader
synced 2026-03-01 10:22:58 -05:00
18 lines
349 B
C++
18 lines
349 B
C++
#ifndef EMPTY_FOLDER_WIDGET_H
|
|
#define EMPTY_FOLDER_WIDGET_H
|
|
|
|
#include <QtWidgets>
|
|
#include "empty_container_info.h"
|
|
|
|
class EmptyFolderWidget : public EmptyContainerInfo
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit EmptyFolderWidget(QWidget *parent = nullptr);
|
|
|
|
protected:
|
|
void applyTheme(const Theme &theme) override;
|
|
};
|
|
|
|
#endif // EMPTY_FOLDER_WIDGET_H
|