/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Fixed.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/11/09 19:23:08 by adjoly #+# #+# */ /* Updated: 2024/11/12 21:49:21 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once class Fixed { private: int _number; static const int _factBit = 8; public: Fixed(void); Fixed(const Fixed& cpy); Fixed& operator=(const Fixed&); ~Fixed(void); int getRawBits( void ) const; void setRawBits( int const raw ); };