recordformat.h

来自「用VC写的一个数据库」· C头文件 代码 · 共 32 行

H
32
字号
#ifndef _RECORDFORMAT_H
#define _RECORDFORMAT_H
#define WIN32

#include <iostream>
#include "Utility/GUtString.h"
#include "Utility/GUtSafeVector.h"

class CRecordFormat:public GUtSafeVector<GUtString>
{
public:
	CRecordFormat(void);
	~CRecordFormat(void);

	bool AddCell(GUtString cellString);
	bool DeleteCell(GUtString cellString);
	bool InsertCell(GUtString cellStringAt,GUtString cellString);
	bool SetCell(GUtString cellStringAt,GUtString cellString);
	void DrawLine();

	bool IsEmptyFormat();
	bool IsHasSame(GUtString cellString);
	bool operator ==(CRecordFormat &format)const;


	int IndexOf(GUtString cellString);
};



#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?