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