annotate include/gui/widgets/anime_info.h @ 77:6f7385bd334c
*: update
formatted all source files, no more subclassing QThread... many other
changes :)
author |
Paper <mrpapersonic@gmail.com> |
date |
Fri, 06 Oct 2023 06:18:53 -0400 |
parents |
3364fadc8a36 |
children |
825506f0e221 |
rev |
line source |
64
|
1 #ifndef __gui__widgets__anime_info_h
|
|
2 #define __gui__widgets__anime_info_h
|
|
3 #include <QWidget>
|
|
4
|
|
5 namespace Anime {
|
76
|
6 class Anime;
|
64
|
7 }
|
|
8
|
|
9 class AnimeInfoWidget : public QWidget {
|
|
10 Q_OBJECT
|
|
11
|
|
12 public:
|
|
13 AnimeInfoWidget(const Anime::Anime& anime, QWidget* parent = nullptr);
|
|
14 };
|
|
15
|
|
16 #endif // __gui__widgets__anime_info_h
|