00001 00006 #ifndef STARTUP_H 00007 #define STARTUP_H 00008 00009 #include <QtCore/QCoreApplication> 00010 #include "qtservice.h" 00011 00016 class Startup : public QtService<QCoreApplication> 00017 { 00018 public: 00019 00021 Startup(int argc, char *argv[]); 00022 00023 protected: 00024 00026 void start(); 00027 00033 void stop(); 00034 00035 }; 00036 00037 #endif // STARTUP_H