/* * colored_int_point.h * * Created on: 25.04.2013 * Author: trifon */ #ifndef COLORED_INT_POINT_H_ #define COLORED_INT_POINT_H_ #include "point.h" enum Color { RED, GREEN, BLUE}; class ColoredIntPoint : public Point { Color c; public: ColoredIntPoint(int _x, int _y, Color _c) { x = _x; y = _y; c = _c; } }; #endif /* COLORED_INT_POINT_H_ */