自己写的选课系统,命令行下的...比较简陋...

源代码在线查看: table.h

软件大小: 39 K
上传用户: lihuitao1987
关键词: 命令行 比较
下载地址: 免注册下载 普通下载 VIP

相关代码

				#ifndef _TABLE_H
				#define _TABLE_H
				
				#include "String.h"
				#include "Grid.h"
				
				class Table
				{
				public:
					Table(int nrow, int ncol);
					~Table();
				
					void SetRowTitle(const String* str);
					void SetColTitle(const String* str);
					void SetTable(Grid** aGr);
					void ShowTable(int page = 0);
				
				private:
					int rowNum;
					int colNum;
					int* rowHeight;
					int* colWidth;
					int curRow;
					const String* rowTitle;
					const String* colTitle;
					Grid** gr;
				
					void DrawBottom();
				
				//--------------------------------------
					Table(const Table&);
					Table& operator=(const Table&);
				};
				
				#endif			

相关资源