openPilotLog
totalswidget.h
1 #ifndef TOTALSWIDGET_H
2 #define TOTALSWIDGET_H
3 
4 #include <QWidget>
5 #include <QStackedLayout>
6 #include <QLabel>
7 #include <QLineEdit>
8 #include <QSettings>
9 #include "src/database/db.h"
10 #include "src/functions/astat.h"
11 
12 namespace Ui {
13 class TotalsWidget;
14 }
15 
16 class TotalsWidget : public QWidget
17 {
18  Q_OBJECT
19 
20 public:
21  explicit TotalsWidget(QWidget *parent = nullptr);
22  ~TotalsWidget();
23 
24 private:
25  Ui::TotalsWidget *ui;
26 };
27 
28 #endif // TOTALSWIDGET_H
TotalsWidget
Definition: totalswidget.h:17