diff options
Diffstat (limited to 'watchmanager.h')
-rw-r--r-- | watchmanager.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/watchmanager.h b/watchmanager.h new file mode 100644 index 0000000..6d945ff --- /dev/null +++ b/watchmanager.h @@ -0,0 +1,23 @@ +#ifndef WATCHMANAGER_H +#define WATCHMANAGER_H + +#include <QObject> + +namespace sowatch +{ + +class WatchManager : public QObject +{ + Q_OBJECT +public: + explicit WatchManager(QObject *parent = 0); + +signals: + +public slots: + +}; + +} + +#endif // WATCHMANAGER_H |