~ubuntu-branches/ubuntu/saucy/clementine/saucy

« back to all changes in this revision

Viewing changes to src/musicbrainz/tagfetcher.h

  • Committer: Package Import Robot
  • Author(s): Thomas PIERSON
  • Date: 2012-01-01 20:43:39 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120101204339-lsb6nndwhfy05sde
Tags: 1.0.1+dfsg-1
New upstream release. (Closes: #653926, #651611, #657391)

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <QFutureWatcher>
25
25
#include <QObject>
26
26
 
27
 
class MusicDnsClient;
 
27
class AcoustidClient;
28
28
 
29
29
class TagFetcher : public QObject {
30
30
  Q_OBJECT
31
31
 
32
 
  // High level interface to Fingerprinter, MusicDnsClient and
 
32
  // High level interface to Fingerprinter, AcoustidClient and
33
33
  // MusicBrainzClient.
34
34
 
35
35
public:
54
54
  static QString GetFingerprint(const Song& song);
55
55
 
56
56
  QFutureWatcher<QString>* fingerprint_watcher_;
57
 
  MusicDnsClient* musicdns_client_;
 
57
  AcoustidClient* acoustid_client_;
58
58
  MusicBrainzClient* musicbrainz_client_;
59
59
 
60
60
  SongList songs_;