123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- #include "rttr/detail/destructor/destructor_wrapper_base.h"
- namespace rttr
- {
- namespace detail
- {
- destructor_wrapper_base::destructor_wrapper_base() RTTR_NOEXCEPT
- {
- }
- destructor_wrapper_base::~destructor_wrapper_base()
- {
- }
- bool destructor_wrapper_base::is_valid() const RTTR_NOEXCEPT
- {
- return false;
- }
- type destructor_wrapper_base::get_declaring_type() const RTTR_NOEXCEPT
- {
- return get_invalid_type();
- }
- type destructor_wrapper_base::get_destructed_type() const RTTR_NOEXCEPT
- {
- return get_invalid_type();
- }
- bool destructor_wrapper_base::invoke(variant& obj) const RTTR_NOEXCEPT
- {
- return false;
- }
- }
- }
|