Sayonara Player
CoverFetcherUrl.h
1 #ifndef COVERFETCHERURL_H
2 #define COVERFETCHERURL_H
3 
4 #include "Utils/Pimpl.h"
5 
6 namespace Cover::Fetcher
7 {
8  class Url
9  {
10  PIMPL(Url)
11 
12  public:
13  Url();
14  Url(bool active, const QString& identifier, const QString& url);
15  Url(const Url& other);
16  Url& operator=(const Url& other);
17  ~Url();
18 
19  void set_active(bool b);
20  bool is_active() const;
21 
22  void set_identifier(const QString& identifier);
23  QString identifier() const;
24 
25  void set_url(const QString& url);
26  QString url() const;
27  };
28 }
29 
30 #endif // COVERFETCHERURL_H
Definition: CoverFetcherUrl.h:8
Definition: CoverFetchManager.h:32