Добавил:
Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
Скачиваний:
21
Добавлен:
01.05.2014
Размер:
552 б
Скачать
	// source file name: window.h

	#ifndef WINDOW_H

	#define WINDOW_H
	#include <iostream.h>
	#include "menu.h"



		class window : public menu {

		private:

			int xcord, ycord;

		public:

			// constructor function

			window( const int x, const int y, const char* str ) : menu(str) {

				xcord = x;

				ycord = y;

			};

			// destructor

			~window() {};

			// window-specific function

			void show (ostream& os ) {

				os << xcord << ',' << ycord << " => " << name() << endl;

			};

	};

	#endif
Соседние файлы в папке ch2