jared | a954181 | 2013-01-09 00:08:46 -0800 | [diff] [blame] | 1 | #include "filesystemwatcher.h" |
2 | #include <QApplication> | ||||
3 | |||||
4 | int 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 | } |