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