2009-05-17 06:12:29 +00:00
|
|
|
//Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
|
|
|
|
|
|
|
|
//Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
//file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
|
|
|
|
#ifndef UUID_DC4208C6417811DEBF11E1EC55D89593
|
|
|
|
#define UUID_DC4208C6417811DEBF11E1EC55D89593
|
|
|
|
|
|
|
|
namespace
|
|
|
|
boost
|
|
|
|
{
|
2009-05-20 19:41:20 +00:00
|
|
|
namespace
|
|
|
|
exception_detail
|
|
|
|
{
|
|
|
|
class
|
|
|
|
exception_ptr_base
|
|
|
|
{
|
|
|
|
public:
|
2009-05-17 06:12:29 +00:00
|
|
|
|
2009-05-20 19:41:20 +00:00
|
|
|
virtual void _rethrow() const=0;
|
|
|
|
virtual bool _empty() const=0;
|
2009-11-04 21:17:35 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2009-11-05 19:35:42 +00:00
|
|
|
virtual
|
|
|
|
~exception_ptr_base() throw()
|
|
|
|
{
|
|
|
|
}
|
2009-05-20 19:41:20 +00:00
|
|
|
};
|
|
|
|
}
|
2009-05-17 06:12:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|