mirror of
https://github.com/YACReader/yacreader
synced 2025-05-25 09:50:33 -04:00
14 lines
293 B
C++
14 lines
293 B
C++
#ifndef EMPTY_READING_LIST_WIDGET_H
|
|
#define EMPTY_READING_LIST_WIDGET_H
|
|
|
|
#include <QtWidgets>
|
|
#include "empty_container_info.h"
|
|
|
|
class EmptyReadingListWidget : public EmptyContainerInfo
|
|
{
|
|
public:
|
|
EmptyReadingListWidget(QWidget *parent = nullptr);
|
|
};
|
|
|
|
#endif // EMPTY_READING_LIST_WIDGET_H
|