Add a doc string

This commit is contained in:
Hannah von Reth 2017-01-20 10:45:47 +01:00
parent e2e3b72723
commit cb4c38411a
3 changed files with 30 additions and 0 deletions

View File

@ -40,7 +40,14 @@ public:
}
public Q_SLOTS:
/**
* Invoked when a notification is created
*/
virtual void slotNotify(Snore::Notification notification);
/**
* Invoked when a notification is displayed by the main backend
*/
virtual void slotNotificationDisplayed(Snore::Notification notification);
};

View File

@ -0,0 +1,6 @@
#include "speech.h"
Speech::Speech(QObject *parent) : QObject(parent)
{
}

View File

@ -0,0 +1,17 @@
#ifndef SPEECH_H
#define SPEECH_H
#include <QObject>
class Speech : public QObject
{
Q_OBJECT
public:
explicit Speech(QObject *parent = 0);
signals:
public slots:
};
#endif // SPEECH_H