⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 recordformat.h

📁 用VC写的一个数据库
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -