自己写的选课系统,命令行下的...比较简陋...
源代码在线查看: table.h
#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