Boost logo

Boost Users :

Subject: [Boost-users] fusion: mpl vector as a fusion vector
From: Hicham Mouline (hicham_at_[hidden])
Date: 2010-02-18 10:45:53


Hello
by include <fusion/include/mpl.hpp>

if I have a mpl::vector<> and I want to use it as a member of a struct. This
member will actually hold runtime data.

typedef mpl::vector<......> mplvector_t;

can I just define it as
struct S {
   mplvector_t m;
};

or do I need to do this:

struct S {
   fusion::result_of::as_vector<mplvector_t>::type m;
};

and then I can store data in m?

Regards,


Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net