mirror of https://github.com/cutefishos/core
feat(notification): add doNotDisturbChanged
parent
9a74c7135a
commit
adbe437e61
@ -0,0 +1,7 @@
|
||||
#include "defaultapplications.h"
|
||||
|
||||
DefaultApplications::DefaultApplications(QObject *parent)
|
||||
: QObject(parent)
|
||||
{
|
||||
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
#ifndef DEFAULTAPPLICATIONS_H
|
||||
#define DEFAULTAPPLICATIONS_H
|
||||
|
||||
#include <QObject>
|
||||
|
||||
class DefaultApplications : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit DefaultApplications(QObject *parent = nullptr);
|
||||
};
|
||||
|
||||
#endif // DEFAULTAPPLICATIONS_H
|
||||
Loading…
Reference in New Issue