1
我有一個類接受使用boost :: mpl的策略類列表。每個策略類都包含一個識別標籤。我希望MyClass生成每個策略類'標識標籤的OR-ed結果。不幸的是,我在計算如何正確使用boost :: mpl :: fold功能時遇到了一些麻煩。如果有人能幫助,我將不勝感激。使用boost :: mpl :: bitor_
#include <boost/mpl/vector.hpp>
#include <boost/mpl/bitor.hpp>
#include <boost/mpl/inherit.hpp>
#include <boost/mpl/inherit_linearly.hpp>
namespace bmpl = boost::mpl;
template< class ListOfPolicies >
class CMyClass : public bmpl::inherit_linearly< ListOfPolicies, bmpl::inherit< bmpl::_1, bmpl::_2 > >::type
{
public:
int identifier() const
{
// error C2039: 'tag' : is not a member of 'PolicyA'
return bmpl::fold< ListOfPolicies, bmpl::int_<0>, bmpl::bitor_< bmpl::_1, bmpl::_2 > >::value
}
};
template< class T >
class PolicyA
{
public:
enum { MY_IDENTIFIER = 0x00000001 };
};
class PolicyB
{
public:
enum { MY_IDENTIFIER = 0x00000010 };
};
int _tmain(int argc, _TCHAR* argv[])
{
CMyClass< PolicyA, PolicyAB > AB
assert(AB.identifier() == (PolicyA::MY_IDENTIFIER | PolicyB::MY_IDENTIFIER));
return 0;
}
感謝, PaulH
我現在明白了。謝謝你的幫助。 – PaulH 2009-10-21 13:22:28