/* * labeled_rational_point.h * * Created on: 25.04.2013 * Author: trifon */ #ifndef LABELED_RATIONAL_POINT_H_ #define LABELED_RATIONAL_POINT_H_ #include "point.h" #include "rational.h" template class LabeledRationalPoint : Point { L label; public: LabeledRationalPoint(Rational _x, Rational _y, L _label) { x = _x; y = _y; label = _label; } }; #endif /* LABELED_RATIONAL_POINT_H_ */