Projet TTPA (Table Tennis Performance Analyser)  0.1
BTS SN 2019
statistiquedetable.h
Aller à la documentation de ce fichier.
1 #ifndef STATISTIQUEDETABLE_H
2 #define STATISTIQUEDETABLE_H
3 
4 #include <qglobal.h>
5 #include <QObject>
6 
11 class StatistiqueDeTable : public QObject
12 {
13  Q_OBJECT
14  public:
15  StatistiqueDeTable(QObject *parent=0);
17 
18  long getSeconde();
19  long getMinute();
20  long getHeure();
21  void fixer(int h, int m, int s);
22 
23  private:
24  typedef enum
25  {
29  hautDroit = 3,
30  milieu = 4,
31  basGauche = 5,
32  basMilieu = 6,
33  basDroit = 7,
34 
35  } Zone;
40  int horsTable;
42 
43  private slots:
44 
45  public slots:
46 
47 };
48 
49 #endif // STATISTIQUEDETABLE_H
int ballesBonne
Definition: statistiquedetable.h:39
Definition: statistiquedetable.h:28
StatistiqueDeTable(QObject *parent=0)
Definition: statistiquedetable.cpp:4
int ballesTotal
Definition: statistiquedetable.h:41
Definition: statistiquedetable.h:31
int ballesMaxi
Definition: statistiquedetable.h:38
int ballesObjectif
Definition: statistiquedetable.h:37
Definition: statistiquedetable.h:33
Definition: statistiquedetable.h:30
Definition: statistiquedetable.h:32
Zone
Definition: statistiquedetable.h:24
Definition: statistiquedetable.h:26
Definition: statistiquedetable.h:29
int ballesMini
Definition: statistiquedetable.h:36
void fixer(int h, int m, int s)
Definition: statistiquedetable.h:11
int horsTable
Definition: statistiquedetable.h:40
Definition: statistiquedetable.h:27
~StatistiqueDeTable()
Definition: statistiquedetable.cpp:9