12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- namespace rttr
- {
- class variant;
- class type;
- namespace detail
- {
- /////////////////////////////////////////////////////////////////////////////////////////
- RTTR_API bool variant_compare_equal(const variant& lhs, const type& lhs_type, const variant& rhs, const type& rhs_type, bool& ok);
- /////////////////////////////////////////////////////////////////////////////////////////
- RTTR_API bool variant_compare_less(const variant& lhs, const type& lhs_type, const variant& rhs, const type& rhs_type, bool& ok);
- /////////////////////////////////////////////////////////////////////////////////////////
- } // end namespace detail
- } // end namespace rttr
|