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