~ubuntu-branches/ubuntu/vivid/clementine/vivid-proposed

« back to all changes in this revision

Viewing changes to src/covers/currentartloader.h

  • Committer: Package Import Robot
  • Author(s): Thomas Pierson
  • Date: 2014-07-12 22:07:28 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20140712220728-5p88h4szhjx1rfrd
Tags: 1.2.3+dfsg-1
* New upstream release. (Closes: #742163, #724615, #722471)
* Update debian/watch file.
* Bump Standards-Version to 3.9.5.
* Bump debian/copyright standard version to 1.0.
* Fix a misspelling issue in debian/copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#ifndef CURRENTARTLOADER_H
19
19
#define CURRENTARTLOADER_H
20
20
 
 
21
#include <memory>
 
22
 
 
23
#include <QObject>
 
24
 
21
25
#include "core/song.h"
22
26
#include "covers/albumcoverloaderoptions.h"
23
27
 
24
 
#include <QObject>
25
 
 
26
 
#include <boost/scoped_ptr.hpp>
27
 
 
28
28
class Application;
29
29
 
30
30
class QImage;
56
56
 
57
57
  QString temp_file_pattern_;
58
58
 
59
 
  boost::scoped_ptr<QTemporaryFile> temp_art_;
60
 
  boost::scoped_ptr<QTemporaryFile> temp_art_thumbnail_;
 
59
  std::unique_ptr<QTemporaryFile> temp_art_;
 
60
  std::unique_ptr<QTemporaryFile> temp_art_thumbnail_;
61
61
  quint64 id_;
62
62
 
63
63
  Song last_song_;