Fotobot
Get data from your photovoltaic plant
maintenance.h
Go to the documentation of this file.
1 
7 #ifndef _MAINTENANCE_H_
8 #define _MAINTENANCE_H_
9 
10 #include <QObject>
11 #include <QTimer>
12 
16 class MAINTENANCE : public QObject {
17  Q_OBJECT
18  public:
19  MAINTENANCE(QObject *parent = 0);
20 
21  private slots:
22  void slotMaintenance();
23 
24  private:
25 
26 };
27 
28 #endif
Simple database maintenance made every 24 hours.
Definition: maintenance.h:16