www.pudn.com > MyProject.rar > RecordFormat.h


#ifndef _RECORDFORMAT_H 
#define _RECORDFORMAT_H 
#define WIN32 
 
#include  
#include "Utility/GUtString.h" 
#include "Utility/GUtSafeVector.h" 
 
class CRecordFormat:public GUtSafeVector 
{ 
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