PlayerFlat
 Tudo Classes Funções
abstractmediainfo.h
1 #ifndef ABSTRACTMEDIAINFO_H
2 #define ABSTRACTMEDIAINFO_H
3 
4 #include <QWidget>
5 #include <QString>
6 // class to display media info
7 class AbstractMediaInfo : public QWidget{
8  Q_OBJECT
9 public:
10  explicit AbstractMediaInfo(QWidget *parent = 0){Q_UNUSED(parent);}
11 
12 public slots:
13  // set attributes to be displayed
14  virtual void setAtribute(QString property, QString value)=0;
15 };
16 
17 #endif // ABSTRACTMEDIAINFO_H
Definition: abstractmediainfo.h:7