17 lines
257 B
C++
17 lines
257 B
C++
|
|
#ifndef EXAMPLE07_CPOINT_H
|
|
#define EXAMPLE07_CPOINT_H
|
|
#include "Point.h"
|
|
|
|
class CPoint : public Point {
|
|
private:
|
|
int color;
|
|
public:
|
|
CPoint();
|
|
CPoint(int x, int y, int c);
|
|
|
|
void print() const;
|
|
};
|
|
|
|
#endif //EXAMPLE07_CPOINT_H
|