summaryrefslogtreecommitdiff
path: root/faker.h
blob: 7c2c1494456d32c57ce9c843c417be75c9cbcd8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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