12345678910111213141516171819202122232425262728293031 |
- #ifndef BOOST_SIGNALS2_EXPIRED_SLOT_HPP
- #define BOOST_SIGNALS2_EXPIRED_SLOT_HPP
- #include <boost/smart_ptr/bad_weak_ptr.hpp>
- namespace boost
- {
- namespace signals2
- {
- class expired_slot: public bad_weak_ptr
- {
- public:
- virtual char const * what() const throw()
- {
- return "boost::signals2::expired_slot";
- }
- };
- }
- }
- #endif
|