1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#ifndef XDGAUTOSTART_H #define XDGAUTOSTART_H #include <QObject> #include "xdgentries.h" namespace KaZoe { class AutoStart : public QObject { Q_OBJECT public: explicit AutoStart(QObject *parent = nullptr); KaZoe::Entries m_entries; public slots: void start(QString key = QString(), QString value = QString()); signals: }; } #endif // XDGAUTOSTART_H