blob: dc2bc85becb58f59a9562f3454f9efe2ea7f4698 [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();
}