| 12345678910111213141516171819202122232425262728293031 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* Point.class.hpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@gmail.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2025/07/17 19:24:44 by bchanot #+# #+# */
- /* Updated: 2025/07/18 19:14:47 by Bastien Chanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #ifndef POINT_CLASS_H
- # define POINT_CLASS_H
- #include "Fixed.class.hpp"
- class Point {
- public:
- Point(void);
- Point(Point const &src);
- Point(float const &x, float const &y);
- Point operator=(Point const &src);
- ~Point(void);
- private:
- Fixed const _x;
- Fixed const _y;
- }
- #endif
|