basic_exception.h
上传用户:psq1974
上传日期:2007-01-06
资源大小:1195k
文件大小:1k
源码类别:

mpeg/mp3

开发平台:

C/C++

  1. /* Copyright (C) 1998, 1999 State University of New York at Stony Brook
  2.    Author: Andrew V. Shuvalov ( andrew@ecsl.cs.sunysb.edu )
  3.    Software license is located in file "COPYING"
  4. */
  5. #ifndef _basic_exception_h_
  6. #define _basic_exception_h_
  7. #include <string>
  8. /** generic exception
  9.  */
  10. class BasicException {
  11.   string text;
  12. public:
  13.   BasicException() {}
  14.   void init( const char *format, ... );
  15.   void init( const char *format, va_list ap );
  16.   const string &getText() { return text; }
  17. };
  18. #endif //  _basic_exception_h_