34 lines
551 B
C++
34 lines
551 B
C++
#ifndef NALOGA0102_WATERINTAKE_H
|
|
#define NALOGA0102_WATERINTAKE_H
|
|
|
|
#include <string>
|
|
|
|
class WaterIntake {
|
|
private:
|
|
unsigned int day, month, year;
|
|
float quantity;
|
|
public:
|
|
WaterIntake();
|
|
|
|
WaterIntake(unsigned int, unsigned int, unsigned int, float);
|
|
|
|
~WaterIntake();
|
|
|
|
unsigned int getDay();
|
|
|
|
unsigned int getMonth();
|
|
|
|
unsigned int getYear();
|
|
|
|
float getQuantity();
|
|
|
|
std::string toString();
|
|
|
|
void addQuantity(float);
|
|
|
|
bool isNormal();
|
|
|
|
};
|
|
|
|
#endif //NALOGA0102_WATERINTAKE_H
|