blob: dc2bc85becb58f59a9562f3454f9efe2ea7f4698 [file] [log] [blame]
jareda9541812013-01-09 00:08:46 -08001#include "filesystemwatcher.h"
2#include <QApplication>
3
4int main(int argc, char *argv[])
5{
6 QApplication app(argc, argv);
7
8 // invoke file system watcher on specified path
9 filesystemwatcher watcher("/Users/jared/Desktop");
10 watcher.show();
11
12 return app.exec();
13}