-
Notifications
You must be signed in to change notification settings - Fork 0
/
DuzaLiczba.h
71 lines (64 loc) · 2.35 KB
/
DuzaLiczba.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include <iostream>
using namespace std;
class DuzaLiczba {
char* wartosc;
bool minus;
public:
DuzaLiczba();
DuzaLiczba(const DuzaLiczba&);
DuzaLiczba(int);
DuzaLiczba(const char*);
~DuzaLiczba();
DuzaLiczba operator-();
DuzaLiczba operator!();
bool operator==(int) const;
bool operator!=(int) const;
bool operator>(int) const;
bool operator<(int) const;
bool operator>=(int) const;
bool operator<=(int) const;
bool operator==(const char*) const;
bool operator!=(const char*) const;
bool operator>(const char*) const;
bool operator<(const char*) const;
bool operator>=(const char*) const;
bool operator<=(const char*) const;
bool operator==(const DuzaLiczba&) const;
bool operator!=(const DuzaLiczba&) const;
bool operator>(const DuzaLiczba&) const;
bool operator<(const DuzaLiczba&) const;
bool operator>=(const DuzaLiczba&) const;
bool operator<=(const DuzaLiczba&) const;
DuzaLiczba operator=(const DuzaLiczba&);
DuzaLiczba operator+(const DuzaLiczba&) const;
DuzaLiczba operator/(const DuzaLiczba&) const;
DuzaLiczba operator-(const DuzaLiczba&) const;
DuzaLiczba operator*(const DuzaLiczba&) const;
DuzaLiczba& operator +=(const DuzaLiczba&);
DuzaLiczba& operator -=(const DuzaLiczba&);
DuzaLiczba& operator *=(const DuzaLiczba&);
DuzaLiczba& operator /=(const DuzaLiczba&);
DuzaLiczba operator=(const char*);
DuzaLiczba operator+(const char*) const;
DuzaLiczba operator/(const char*) const;
DuzaLiczba operator-(const char*) const;
DuzaLiczba operator*(const char*) const;
DuzaLiczba& operator +=(const char*);
DuzaLiczba& operator -=(const char*);
DuzaLiczba& operator *=(const char*);
DuzaLiczba& operator /=(const char*);
DuzaLiczba operator=(int);
DuzaLiczba operator+(int) const;
DuzaLiczba operator/(int) const;
DuzaLiczba operator-(int) const;
DuzaLiczba operator*(int) const;
DuzaLiczba& operator +=(int);
DuzaLiczba& operator -=(int);
DuzaLiczba& operator *=(int);
DuzaLiczba& operator /=(int);
int compareTo(const DuzaLiczba&) const;
int compareWithoutS(const DuzaLiczba&) const;
char* intToChar(int*, int) const;
friend std::ostream& operator<<(std::ostream&, const DuzaLiczba&);
friend std::istream& operator>>(std::istream&, DuzaLiczba&);
};