yacreader/custom_widgets/whats_new_dialog.h
Luis Ángel San Martín 58fdf0af23 Add what's new dialog
2021-01-21 21:39:22 +01:00

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