2008-01-22 11:29:21 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/meta/if.h
|
|
|
|
// Purpose: declares wxIf<> metaprogramming construct
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Created: 2008-01-22
|
|
|
|
// Copyright: (c) 2008 Vaclav Slavik
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_META_IF_H_
|
|
|
|
#define _WX_META_IF_H_
|
|
|
|
|
2008-01-29 18:37:38 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
2008-01-22 11:29:21 +00:00
|
|
|
namespace wxPrivate
|
|
|
|
{
|
|
|
|
|
2008-01-29 18:37:38 +00:00
|
|
|
template <bool Cond>
|
2014-05-15 22:32:17 +00:00
|
|
|
struct wxIfImpl;
|
2008-01-22 11:29:21 +00:00
|
|
|
|
|
|
|
// specialization for true:
|
2008-01-29 18:37:38 +00:00
|
|
|
template <>
|
2008-01-22 11:29:21 +00:00
|
|
|
struct wxIfImpl<true>
|
|
|
|
{
|
|
|
|
template<typename TTrue, typename TFalse> struct Result
|
|
|
|
{
|
2008-01-30 08:49:42 +00:00
|
|
|
typedef TTrue value;
|
2008-01-22 11:29:21 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
// specialization for false:
|
|
|
|
template<>
|
|
|
|
struct wxIfImpl<false>
|
|
|
|
{
|
|
|
|
template<typename TTrue, typename TFalse> struct Result
|
|
|
|
{
|
2008-01-30 08:49:42 +00:00
|
|
|
typedef TFalse value;
|
2008-01-22 11:29:21 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace wxPrivate
|
|
|
|
|
2009-08-21 10:41:26 +00:00
|
|
|
// wxIf<> template defines nested type "value" which is the same as
|
2008-01-22 11:29:21 +00:00
|
|
|
// TTrue if the condition Cond (boolean compile-time constant) was met and
|
|
|
|
// TFalse if it wasn't.
|
|
|
|
//
|
|
|
|
// See wxVector<T> in vector.h for usage example
|
|
|
|
template<bool Cond, typename TTrue, typename TFalse>
|
2008-01-29 23:31:04 +00:00
|
|
|
struct wxIf
|
2008-01-22 11:29:21 +00:00
|
|
|
{
|
2008-01-30 08:49:42 +00:00
|
|
|
typedef typename wxPrivate::wxIfImpl<Cond>
|
|
|
|
::template Result<TTrue, TFalse>::value
|
|
|
|
value;
|
2008-01-22 11:29:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_META_IF_H_
|