This commit is contained in:
Camille Chauvet
2023-08-03 17:47:31 +02:00
parent 1d752c591b
commit 7de4817171
2 changed files with 23 additions and 23 deletions

View File

@ -18,17 +18,17 @@ class Fixed
Fixed &operator=(const Fixed& src);
bool operator<(const Fixed& src);
bool operator>(const Fixed& src);
bool operator>=(const Fixed& src);
bool operator<=(const Fixed& src);
bool operator==(const Fixed& src);
bool operator!=(const Fixed& src);
bool operator<(const Fixed& src) const;
bool operator>(const Fixed& src) const;
bool operator>=(const Fixed& src) const;
bool operator<=(const Fixed& src) const;
bool operator==(const Fixed& src) const;
bool operator!=(const Fixed& src) const;
Fixed operator-(const Fixed& src);
Fixed operator+(const Fixed& src);
Fixed operator*(const Fixed& src);
Fixed operator/(const Fixed& src);
Fixed operator-(const Fixed& src) const;
Fixed operator+(const Fixed& src) const;
Fixed operator*(const Fixed& src) const;
Fixed operator/(const Fixed& src) const;
Fixed &operator++();