forked from lubuwest/Friendiqa
v0.1
This commit is contained in:
parent
591d55f43a
commit
fb560b54b1
115 changed files with 5537 additions and 0 deletions
|
@ -0,0 +1,27 @@
|
|||
#ifndef AUTOMATOR_H
|
||||
#define AUTOMATOR_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QVariantMap>
|
||||
|
||||
/// For unit test purpose. Not needed for regular project.
|
||||
|
||||
class Automator : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit Automator(QObject *parent = 0);
|
||||
~Automator();
|
||||
|
||||
void start();
|
||||
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
|
||||
private slots:
|
||||
void onDispatched(QString name,QVariantMap message);
|
||||
|
||||
};
|
||||
|
||||
#endif // AUTOMATOR_H
|
Loading…
Add table
Add a link
Reference in a new issue