Hey clown! Try what I have below.
//=========================================================================================
#include <boost/mpl/vector.hpp>
#include <boost/mpl/at.hpp>
void MPLVectorTest()
{
using namespace boost::mpl;
typedef vector<float,double,char,short,long> MixedVector;
static const std::size_t sizes[] =
{
sizeof( at_c<MixedVector, 0>::type ),
sizeof( at_c<MixedVector, 1>::type ),
sizeof( at_c<MixedVector, 2>::type ),
sizeof( at_c<MixedVector, 3>::type ),
sizeof( at_c<MixedVector, 4>::type )
};
}
Given a MPL Random Access Container (typename Types) I want to make a
static const std::size_t array which contains the sizeof each type in Types.
How can I do this?
Thanks,
Michael Marcin
_______________________________________________
Boost-users mailing list
Boost-users@lists.boost.org
http://lists.boost.org/mailman/listinfo.cgi/boost-users