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

📄 abwinexception.h

📁 miXo is a buzz machine (www.buzzmachines.com) - a plugin for the freely available jeskola buzz track
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -