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

📄 read.h

📁 This is my assignment for my tutor s Class. and many problems exist,so you should comprhend it and i
💻 H
字号:
// Read.h: interface for the CRead class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_READ_H__6EDE6790_17EC_4FEE_8FC3_530E67AFBE3D__INCLUDED_)
#define AFX_READ_H__6EDE6790_17EC_4FEE_8FC3_530E67AFBE3D__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CRead : public CObject  
{
public:
	bool Read();
	void SetName(CString name){ m_Name=name;}
	void SetK(double k){m_K=k;}
	void SetN(double N){m_N=N;}
	void SetThickness(double thickness){m_Thickness=thickness;}
	CString GetName(){return m_Name;}
	double GetN(){return m_N;}
	double GetK(){return m_K;}
	double GetThickness(){return m_Thickness;}
    double atofd(CString str);
	CRead();
	virtual ~CRead();
    CString m_Str[4];
private:
	
	double m_Thickness;
	double m_K;
	double m_N;
	CString m_Name;
	int ReadWord(CString &str);
};

#endif // !defined(AFX_READ_H__6EDE6790_17EC_4FEE_8FC3_530E67AFBE3D__INCLUDED_)

⌨️ 快捷键说明

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