ioexception.h

来自「一个symbian 冒险游戏代码」· C头文件 代码 · 共 31 行

H
31
字号
#ifndef _IO_IOEXCEPTION_H
#define _IO_IOEXCEPTION_H


#include <lang/Exception.h>


namespace io
{


/**
 * Thrown if input/output operation fails.
 * 
 * @ingroup io
 */
class IOException :
	public lang::Exception
{
public:
	IOException( const lang::Format& msg )											: Exception(msg) {}
};


} // io


#endif // _IO_IOEXCEPTION_H


⌨️ 快捷键说明

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