abwinexception.h

来自「miXo is a buzz machine (www.buzzmachines」· C头文件 代码 · 共 27 行

H
27
字号
// AbWinException.h: interface for the CAbWinException class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_ABWINEXCEPTION_H__84D40543_5F44_11D5_8DCF_84AD93201C3A__INCLUDED_)
#define AFX_ABWINEXCEPTION_H__84D40543_5F44_11D5_8DCF_84AD93201C3A__INCLUDED_

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

#include "AbException.h"

class CAbWinException : public CAbException  
{
	string m_strDetails;
public:
	CAbWinException() throw() : CAbException(),m_strDetails() {}
	CAbWinException(unsigned u,const char *f,unsigned l,
		const WNDCLASSEX&,bool bSystem=true) throw();
	virtual ~CAbWinException();
	virtual string GetMessage() const;
	string GetDetailedMessage(const WNDCLASSEX&);
};

#endif // !defined(AFX_ABWINEXCEPTION_H__84D40543_5F44_11D5_8DCF_84AD93201C3A__INCLUDED_)

⌨️ 快捷键说明

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