-
Notifications
You must be signed in to change notification settings - Fork 1
/
MyTimeClass.h
46 lines (44 loc) · 1.14 KB
/
MyTimeClass.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
* Autor: inż. Damian Zacheja
* Opis:
* Ponieważ wyznaczenie wymaga bardzo dokładnego określenia czasu
* poniżej 1ms należało stworzyć własną klasę czasu wraz ze wszystkimi
* potrzebnymi metodami do jej obsługi oraz przeładować wyamagane
* operatory w celu ułatwienia dalszej pracy
*
* Klasa może być przydatna w wielu następpnych opracowaniach, dlatego
* warto ją gdzieś zapisać.
*/
#ifndef MYTIMECLASS_H
#define MYTIMECLASS_H
#include <QString>
class MyTimeClass
{
private:
int godz;
int min;
double sec;
public:
struct BlednyCzas{
QString informacja;
};
MyTimeClass();
MyTimeClass(int, int, double);
void addTime(int,int,double);
void addTime(int,int);
void addTime(int, double);
void addSecounds(double);
void addMinutes(int);
void addHours(int);
void subSecounds(double);
int getHour();
int getMinutes();
double getSecounds();
double getSecoundsOfTheDay();
QString GetTimeQString();
bool operator>(MyTimeClass&);
bool operator<(MyTimeClass&);
bool operator>=(MyTimeClass&);
bool operator<=(MyTimeClass&);
};
#endif // MYTIMECLASS_H