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

📄 datastructure.h

📁 故障诊断工作涉及的领域相当广泛
💻 H
字号:
// datastructure.h: interface for the datastructure class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_DATASTRUCTURE_H__8B45909B_80F9_4AE2_AAB4_2AAF6E028E20__INCLUDED_)
#define AFX_DATASTRUCTURE_H__8B45909B_80F9_4AE2_AAB4_2AAF6E028E20__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class datastructure : public CObject  
{public:
	BOOL bdefault;
	int type;
	unsigned int line;
	unsigned int column;
	unsigned int cnt;
public:
	void operator =(datastructure& in);
public:
	void serialize(CArchive& ar);
	datastructure();
	virtual ~datastructure();

};

#endif // !defined(AFX_DATASTRUCTURE_H__8B45909B_80F9_4AE2_AAB4_2AAF6E028E20__INCLUDED_)

⌨️ 快捷键说明

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