blob: e9949eccadacd29e45abe30b44f623854b21e6e2 [file] [log] [blame]
#include "filesystemwatcher.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
// invoke file system watcher on specified path
FileSystemWatcher watcher("/Users/jared/Desktop");
watcher.show();
return app.exec();
}