mirror of
https://github.com/YACReader/yacreader
synced 2025-05-25 18:00:46 -04:00
19 lines
336 B
C++
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
|