mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-27 21:58:30 +01:00
35acd2eea7
meta-programming magic so that everything builds through with MSXML. See http://www.jezuk.co.uk/cgi-bin/view/SAX/news?id=2713 for details of the problem. This may break VC6, but I haven't checked
29 lines
579 B
C++
29 lines
579 B
C++
#ifndef ARABICA_UTILS_GET_PARAM_HPP
|
|
#define ARABICA_UTILS_GET_PARAM_HPP
|
|
|
|
#include <boost/mpl/if.hpp>
|
|
#include <boost/type_traits/is_base_and_derived.hpp>
|
|
|
|
namespace Arabica
|
|
{
|
|
|
|
struct nil_t { };
|
|
|
|
template <typename BaseT, typename DefaultT, typename T0, typename T1>
|
|
struct get_param
|
|
{
|
|
typedef typename boost::mpl::if_<
|
|
boost::is_base_and_derived<BaseT, T0>
|
|
, T0
|
|
, typename boost::mpl::if_<
|
|
boost::is_base_and_derived<BaseT, T1>
|
|
, T1
|
|
, DefaultT
|
|
>::type
|
|
>::type type;
|
|
}; // get_param
|
|
|
|
} // namespace Arabica
|
|
|
|
#endif
|
|
|