mirror of
https://github.com/status-im/snorenotify.git
synced 2025-02-22 13:08:16 +00:00
Add a doc string
This commit is contained in:
parent
e2e3b72723
commit
cb4c38411a
@ -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);
|
||||
|
||||
};
|
||||
|
6
src/plugins/secondary_backends/speech/speech.cpp
Normal file
6
src/plugins/secondary_backends/speech/speech.cpp
Normal file
@ -0,0 +1,6 @@
|
||||
#include "speech.h"
|
||||
|
||||
Speech::Speech(QObject *parent) : QObject(parent)
|
||||
{
|
||||
|
||||
}
|
17
src/plugins/secondary_backends/speech/speech.h
Normal file
17
src/plugins/secondary_backends/speech/speech.h
Normal 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
|
Loading…
x
Reference in New Issue
Block a user