modif d01 ex03 weapon gettype return ref sur const string, d02 ex02 fini
This commit is contained in:
@@ -26,8 +26,15 @@ public:
|
||||
Fixed operator- (Fixed const & rhs) const;
|
||||
Fixed operator* (Fixed const & rhs) const;
|
||||
Fixed operator/ (Fixed const & rhs) const;
|
||||
// void operator++(void);
|
||||
// void operator--(void);
|
||||
Fixed operator++(void); // prefix ++o
|
||||
Fixed operator--(void); // prefix --o
|
||||
Fixed operator++(int); // postfix o++
|
||||
Fixed operator--(int); // postfix o--
|
||||
|
||||
static const Fixed & min(Fixed const & lhs, Fixed const & rhs);
|
||||
static const Fixed & max(Fixed const & lhs, Fixed const & rhs);
|
||||
static Fixed & min(Fixed & lhs, Fixed & rhs);
|
||||
static Fixed & max(Fixed & lhs, Fixed & rhs);
|
||||
|
||||
int getRawBits(void) const;
|
||||
void setRawBits(int const raw);
|
||||
|
||||
Reference in New Issue
Block a user