diff options
Diffstat (limited to 'src/lib/xdgautostart.h')
-rw-r--r-- | src/lib/xdgautostart.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/lib/xdgautostart.h b/src/lib/xdgautostart.h new file mode 100644 index 0000000..fc6c02d --- /dev/null +++ b/src/lib/xdgautostart.h @@ -0,0 +1,24 @@ +#ifndef XDGAUTOSTART_H +#define XDGAUTOSTART_H + +#include <QObject> +#include "xdgentries.h" + + +namespace xdg { + class AutoStart : public QObject + { + Q_OBJECT + public: + explicit AutoStart(QObject *parent = nullptr); + xdg::Entries m_entries; + + public slots: + void start(QString key = QString(), QString value = QString()); + + signals: + + }; +} + +#endif // XDGAUTOSTART_H |