chqexception.h

来自「windows ce ImageViewer_ScriptDriven」· C头文件 代码 · 共 31 行

H
31
字号
//
// CHQException.h
//
// --------------------------------------------------------
// A Practical Guide to Script-Driven Software Development
// Author: Qiming Lu                        Date: 6/1/2006
// MSN Messager: luqiming26@hotmail.com
// MSN Blog: http://spaces.msn.com/jemylu
// --------------------------------------------------------

#ifndef __H_CHQException__
#define __H_CHQException__

#include <exception>

class CHQException : public exception
{
public:
	CHQException(const char* szInfo, int number)
		: exception(szInfo)
		, mNumber(number)
	{
	}

	int GetNumber() { return mNumber; }

protected:
	int		mNumber;
};

#endif // __H_CHQException__

⌨️ 快捷键说明

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