1
0
mirror of https://github.com/chylex/Nextcloud-Desktop.git synced 2024-10-17 16:42:46 +02:00
Nextcloud-Desktop/test/testfolderwatcher.h
Duncan Mac-Vicar P 25315dfdec fix warning
2011-04-06 17:03:10 +02:00

27 lines
356 B
C++

#ifndef MIRALL_TEST_FOLDERWATCHER_H
#define MIRALL_TEST_FOLDERWATCHER_H
#include <QtTest/QtTest>
#include "mirall/folderwatcher.h"
class TestFolderWatcher : public QObject
{
Q_OBJECT
public:
private slots:
void initTestCase();
void cleanupTestCase();
void testFilesAdded();
private:
Mirall::FolderWatcher *_watcher;
};
#endif