annotate src/include/information.h @ 2:23d0d9319a00
Update
Also converted everything to LF from CRLF
author |
Paper <mrpapersonic@gmail.com> |
date |
Sat, 12 Aug 2023 03:16:26 -0400 |
parents |
1ae666fdf9e2 |
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 |