diff options
Diffstat (limited to 'Coordinates.h')
| -rw-r--r-- | Coordinates.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/Coordinates.h b/Coordinates.h new file mode 100644 index 0000000..8a5e05e --- /dev/null +++ b/Coordinates.h @@ -0,0 +1,45 @@ +#ifndef COORDINATES_H__ +#define COORDINATES_H__ + +/* ******************************************************************* + * Includes + * ******************************************************************/ + +#include <stdbool.h> +#include <stdint.h> + +/* ******************************************************************* + * Defines + * ******************************************************************/ + +/* ******************************************************************* + * Global types definition + * ******************************************************************/ + +/* ******************************************************************* + * Global variables declaration + * ******************************************************************/ + +/* ******************************************************************* + * Global functions declaration + * ******************************************************************/ + +/* ******************************************************************* + * Class definition + * ******************************************************************/ + +class Coordinates +{ + public: + typedef uint16_t tPos; + explicit Coordinates(const tPos x, const tPos y); + Coordinates operator+(const Coordinates& c) const; + tPos getX(void) const; + tPos getY(void) const; + + private: + tPos _x; + tPos _y; +}; + +#endif /* COORDINATES_H__ */ |
