/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Fixed.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos class Fixed { private: int value; static const int fract = 8; public: // Default constructor Fixed(); // Copy constructor Fixed(Fixed &other); // Copy assignment operator overload Fixed& operator=(Fixed const &other); // Destructor ~Fixed(); // getRawBits int getRawBits( void ) const; // setRawBits void setRawBits( int const raw ); }; #endif