Files
yacreader/YACReaderLibrary/empty_folder_widget.h
2026-03-13 11:06:25 +01:00

17 lines
328 B
C++

#ifndef EMPTY_FOLDER_WIDGET_H
#define EMPTY_FOLDER_WIDGET_H
#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