#ifndef AUTOSTART_MANAGER_H #define AUTOSTART_MANAGER_H #include class AutoStartManager { public: static bool enableForCurrentApplication(); static bool enableForPath(const QString &executablePath); static bool disable(); static bool isEnabled(); static QString launchAgentContents(const QString &executablePath); static QString launchAgentPath(); }; #endif // AUTOSTART_MANAGER_H