Etudes/BTS/C++/RessourcesReveil/reveil.h

27 lines
355 B
C
Raw Normal View History

2016-10-14 15:52:18 +00:00
#ifndef REVEIL_H_INCLUDED
#define REVEIL_H_INCLUDED
enum MODE_REVEIL
{
REGLAGE_HEURES,
REGLAGE_MINUTES,
ACTIVER_ALARME
};
class Reveil
{
private:
short heure;
short minute;
short mode;
public:
bool AvancerHeure();
bool ReculerHeure();
bool AvancerMinute();
bool ReculerMinute();
};
#endif // REVEIL_H_INCLUDED