#ifndef __GEOMETRY_H__ #define __GEOMETRY_H__ #include class Rectangle { public: int32_t left = 0; int32_t right = 0; int32_t top = 0; int32_t bottom = 0; }; #endif // __GEOMETRY_H__