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

20 lines
328 B
C
Raw Normal View History

#ifndef QTFSLISTENER_H
#define QTFSLISTENER_H
#include "filesystemwatcherinterface.h"
#include <QFileSystemWatcher>
class QtFSListener : public FileSystemWatcherInterface {
Q_OBJECT
public:
QtFSListener(QObject* parent);
virtual void AddPath(const QString& path);
private:
QFileSystemWatcher watcher_;
};
#endif