summaryrefslogtreecommitdiff
path: root/faker.h
diff options
context:
space:
mode:
Diffstat (limited to 'faker.h')
-rw-r--r--faker.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/faker.h b/faker.h
new file mode 100644
index 0000000..7c2c149
--- /dev/null
+++ b/faker.h
@@ -0,0 +1,27 @@
+#ifndef FAKER_H
+#define FAKER_H
+
+#include <QtDBus/QDBusConnection>
+
+#include "fakeproperty.h"
+#include "fakepropertyadaptor.h"
+
+class Faker : public QObject
+{
+ Q_OBJECT
+public:
+ explicit Faker(const QString& val, QObject *parent = 0);
+
+signals:
+
+public slots:
+ void start();
+ void stop();
+
+protected:
+ QDBusConnection _bus;
+ FakeProperty *_property;
+ FakePropertyAdaptor *_adaptor;
+};
+
+#endif // FAKER_H