Fixed the easier codereview comments from r645

This commit is contained in:
David Sansome 2010-04-12 00:26:16 +00:00
parent aaee1ded22
commit a25fd395f1
1 changed files with 3 additions and 6 deletions

View File

@ -27,6 +27,7 @@
#include <sys/types.h>
#include <vector>
#include <boost/noncopyable.hpp>
#include "engine_fwd.h"
@ -34,7 +35,7 @@ namespace Engine {
typedef std::vector<int16_t> Scope;
class Base : public QObject {
class Base : public QObject, boost::noncopyable {
Q_OBJECT
public:
@ -92,9 +93,6 @@ class Base : public QObject {
static uint MakeVolumeLogarithmic( uint volume );
void EmitAboutToEnd();
Base( const Base& );
const Base &operator=( const Base& );
protected:
uint volume_;
QUrl url_;
@ -111,8 +109,7 @@ class Base : public QObject {
};
class SimpleMetaBundle {
public:
struct SimpleMetaBundle {
QString title;
QString artist;
QString album;