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

19 lines
336 B
C++

#ifndef WHATSNEWCONTROLLER_H
#define WHATSNEWCONTROLLER_H
class QWidget;
namespace YACReader {
class WhatsNewController
{
public:
WhatsNewController();
void showWhatsNewIfNeeded(QWidget *fromParent = nullptr);
void showWhatsNew(QWidget *fromParent = nullptr);
};
} // namespace YACReader
#endif // WHATSNEWCONTROLLER_H