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

« back to all changes in this revision

Viewing changes to src/visualisations/projectmvisualisation.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 PROJECTMVISUALISATION_H
19
19
#define PROJECTMVISUALISATION_H
20
20
 
 
21
#include <memory>
 
22
 
21
23
#include <QGraphicsScene>
22
24
#include <QBasicTimer>
23
25
#include <QSet>
24
26
 
25
 
#include <boost/scoped_ptr.hpp>
26
 
 
27
27
#include "engines/bufferconsumer.h"
28
28
 
29
29
class projectM;
77
77
  int IndexOfPreset(const QString& path) const;
78
78
 
79
79
private:
80
 
  boost::scoped_ptr<projectM> projectm_;
 
80
  std::unique_ptr<projectM> projectm_;
81
81
  ProjectMPresetModel* preset_model_;
82
82
  Mode mode_;
83
83
  int duration_;
84
84
 
85
 
  boost::scoped_ptr<QTemporaryFile> temporary_font_;
 
85
  std::unique_ptr<QTemporaryFile> temporary_font_;
86
86
 
87
87
  std::vector<int> default_rating_list_;
88
88