Miam-Player  0.8.0
A nice music player
artistitem.h
Go to the documentation of this file.
1 #ifndef ARTISTITEM_H
2 #define ARTISTITEM_H
3 
4 #include <QStandardItem>
5 #include "miamlibrary_global.hpp"
6 
12 class MIAMLIBRARY_LIBRARY ArtistItem : public QStandardItem
13 {
14 public:
15  explicit ArtistItem();
16 
17  virtual ~ArtistItem() {}
18 
19  virtual int type() const override;
20 
21  uint hash() const;
22 };
23 
24 #endif // ARTISTITEM_H
unsigned int uint
Definition: taglib.h:68
The ArtistItem class.
Definition: artistitem.h:12
#define MIAMLIBRARY_LIBRARY
Definition: miamlibrary_global.hpp:8
virtual ~ArtistItem()
Definition: artistitem.h:17