stl_exce.h
上传用户:nizebo
上传日期:2022-05-14
资源大小:882k
文件大小:2k
源码类别:

STL

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1998
  3.  * Silicon Graphics Computer Systems, Inc.
  4.  *
  5.  * Permission to use, copy, modify, distribute and sell this software
  6.  * and its documentation for any purpose is hereby granted without fee,
  7.  * provided that the above copyright notice appear in all copies and
  8.  * that both that copyright notice and this permission notice appear
  9.  * in supporting documentation.  Silicon Graphics makes no
  10.  * representations about the suitability of this software for any
  11.  * purpose.  It is provided "as is" without express or implied warranty.
  12.  */ 
  13. #ifndef __SGI_STL_EXCEPTION_H
  14. #define __SGI_STL_EXCEPTION_H
  15. // This header exists solely for portability.  Normally it just includes
  16. // the header <exception>.
  17. // The header <exception> contains low-level functions that interact
  18. // with a compiler's exception-handling mechanism.  It is assumed to
  19. // be supplied with the compiler, rather than with the library, because
  20. // it is inherently tied very closely to the compiler itself.
  21. // On platforms where <exception> does not exist, this header defines
  22. // an exception base class.  This is *not* a substitute for everything
  23. // in <exception>, but it suffices to support a bare minimum of STL
  24. // functionality.
  25. #include <stl_config.h>
  26. #ifndef __STL_NO_EXCEPTION_HEADER
  27. #include <exception>
  28. #define __STL_EXCEPTION_BASE exception
  29. #else /* __STL_NO_EXCEPTION_HEADER */
  30. __STL_BEGIN_NAMESPACE
  31. class _Exception {
  32. public:
  33.   virtual ~_Exception() __STL_NOTHROW {}
  34.   virtual const char* what() const __STL_NOTHROW { return ""; }
  35. };
  36. #define __STL_EXCEPTION_BASE _Exception
  37. __STL_END_NAMESPACE
  38. #endif /* __STL_NO_EXCEPTION_HEADER */
  39. #endif /* __SGI_STL_EXCEPTION_H */
  40. // Local Variables:
  41. // mode:C++
  42. // End: