mirror of
https://github.com/YACReader/yacreader
synced 2025-05-27 10:50:27 -04:00
18 lines
293 B
C++
18 lines
293 B
C++
#ifndef WHATSNEWDIALOG_H
|
|
#define WHATSNEWDIALOG_H
|
|
|
|
#include "rounded_corners_dialog.h"
|
|
#include <QObject>
|
|
|
|
namespace YACReader {
|
|
|
|
class WhatsNewDialog : public RoundedCornersDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit WhatsNewDialog(QWidget *parent = nullptr);
|
|
};
|
|
}
|
|
|
|
#endif // WHATSNEWDIALOG_H
|