Clementine-audio-player-Mac.../src/core/boundfuturewatcher.h

26 lines
448 B
C
Raw Normal View History

#ifndef BOUNDFUTUREWATCHER_H
#define BOUNDFUTUREWATCHER_H
#include <QFutureWatcher>
#include <boost/noncopyable.hpp>
template <typename T, typename D>
class BoundFutureWatcher : public QFutureWatcher<T>, boost::noncopyable {
public:
BoundFutureWatcher(D data, QObject* parent = 0)
: QFutureWatcher<T>(parent),
data_(data) {
}
~BoundFutureWatcher() {
}
D data() const { return data_; }
private:
D data_;
};
#endif