Fotobot
Get data from your photovoltaic plant
startup.h
Go to the documentation of this file.
1 
7 #ifndef STARTUP_H
8 #define STARTUP_H
9 
10 #include <QtCore/QCoreApplication>
11 #include "qtservice.h"
12 
17 class Startup : public QtService<QCoreApplication> {
18  public:
19 
21  Startup(int argc, char *argv[]);
22 
23  protected:
24 
26  void start();
27 
33  void stop();
34 
35 };
36 
37 #endif // STARTUP_H
Startup(int argc, char *argv[])
Definition: startup.cpp:123
void start()
Definition: startup.cpp:30
void stop()
Definition: startup.cpp:117