ierror.hh
来自「It s a tool designed to extract as much 」· HH 代码 · 共 46 行
HH
46 行
/* -*- c++ -*- --------------------------------------------------------------- Copyright (C) 2005, SWECO, All Rights Reserved. Interface for error reporting classes $Id$ Author: Zsolt Molnar (Zsolt.Molnar@ieee.org) ---------------------------------------------------------------------------*/#ifndef __IERROR_HH__#define __IERROR_HH__#include <iostream>#include <string>#include "base.hh"#ifdef _cplusplusextern "C" {#endifclass IError {public: typedef enum tType { FATAL, RECOVERABLE };public: IError() {}; virtual ~IError() {}; virtual void print(ostream& aStream) = 0; virtual tType getType() = 0;};#ifdef _cplusplus}#endif#endif /* #ifndef __IRFCOMMHANDLER_HH__ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?