Mercurial > minori
annotate src/include/information.h @ 3:190ded9438c0
Fix many warnings
| author | Paper <mrpapersonic@gmail.com> |
|---|---|
| date | Sat, 12 Aug 2023 11:57:25 -0400 |
| parents | 23d0d9319a00 |
| children | 07a9095eaeed |
| rev | line source |
|---|---|
| 2 | 1 #ifndef __information_h |
| 2 #define __information_h | |
| 3 #include "anime.h" | |
| 4 class InformationDialog: public QDialog { | |
| 5 Q_OBJECT | |
| 6 public: | |
| 7 InformationDialog(Anime& a, AnimeListWidgetModel* model, QWidget* parent = nullptr); | |
| 8 | |
| 9 private: | |
| 10 void OnOK(); | |
| 11 Anime* anime; | |
| 12 AnimeListWidgetModel* model; | |
| 13 }; | |
| 1 | 14 #endif // __information_h |
