output.h

来自「Debug.x:封装SEH 作用:在程序发生未处理的异常时」· C头文件 代码 · 共 28 行

H
28
字号
// Output.h: interface for the COutput class.
// Defined by Wei Shufng. _cout@163.com
// Compiled with VC++6.0 windows xp professional v2002.
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_OUTPUT_H__3F437A48_564E_4A4D_8DB3_54785CC84D26__INCLUDED_)
#define AFX_OUTPUT_H__3F437A48_564E_4A4D_8DB3_54785CC84D26__INCLUDED_

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

class COutput  
{
public:
	COutput();
	virtual ~COutput();
	COutput (char *pch);
	void SetFileName (LPCSTR pch);
	char *GetFileName ();
	void WriteString (LPCSTR pstr);
	void NewLine ();
private:
	char m_strFile[128];
};

#endif // !defined(AFX_OUTPUT_H__3F437A48_564E_4A4D_8DB3_54785CC84D26__INCLUDED_)

⌨️ 快捷键说明

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