Скачиваний:
21
Добавлен:
01.05.2014
Размер:
395 б
Скачать
	// source file name: menu.h
	#ifndef MENU_H
	#define MENU_H

	class menu {

		private:

			char* title;

		protected:

			static int num_fields;

		public:

			// constructor function

			menu( const char* str );

				menu();

			// destructor function

			~menu();

			void incr_field( int size=1 );

			static int fields();

			char* name() ;

	};

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