Скачиваний:
13
Добавлен:
01.05.2014
Размер:
297 б
Скачать
#ifndef board_h
#define board_h

//#include <point.cpp>

class board{

Point Top[4];

public:
board();
board(const Point &A, const Point &B, const Point &C, const Point &D);
~board();
Point GetTop(const int i);
void SetTop(const int i, const Point &X);
void print();
};

#endif
Соседние файлы в папке Лабораторная работа 3