?? cexceptionado.h
字號:
/*********************************************************************** * Module: CExceptionADO.h * Author: asus * Modified: 2006年4月27日 10:35:46 * Purpose: Declaration of the class CExceptionADO * Comment: 異常類 ***********************************************************************/#if !defined(__ObjectOrientedModel_1_CExceptionADO_h)#define __ObjectOrientedModel_1_CExceptionADO_hclass C_ExceptionADO{public: /* 構造函數 */ C_ExceptionADO(const char* szErrMessage, int nErrCode); /* 取錯誤消息 */ char* Message(void); /* 取錯誤代碼 */ int ErrorCode(void);protected: /* 錯誤消息字符串 */ std::string m_szMessage; /* 錯誤代碼 */ int m_nErrCode;private:};#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -