Sayonara Player
CoverExtractor.h
1 #ifndef COVEREXTRACTOR_H
2 #define COVEREXTRACTOR_H
3 
4 #include <QObject>
5 #include "Utils/Pimpl.h"
6 class QPixmap;
7 
8 namespace Cover
9 {
10  class Extractor : public QObject
11  {
12  Q_OBJECT
13  PIMPL(Extractor)
14 
15  signals:
16  void sig_finished();
17 
18  public:
19  Extractor(const QString& filepath, QObject* parent);
20  ~Extractor();
21 
22  QPixmap pixmap();
23 
24  public slots:
25  void start();
26  };
27 }
28 
29 #endif // COVEREXTRACTOR_H
Definition: CoverExtractor.h:10
Definition: SomaFMStation.h:33