std::string a= "a";
std::string b= "b";
std::string c= "c";
typedef mpl::vector<EasyFixEngineA,EasyFixEngineB,EasyFixEngineC> vecType;
RegisterInFactory<EasyFixEngine, mpl::at_c<vecType,0>::type> registerA( a);
RegisterInFactory<EasyFixEngine, mpl::at_c<vecType,1>::type,> registerB( b);
RegisterInFactory<EasyFixEngine, mpl::at_c<vecType,2>::type> registerC( c);
boost :: mplを使用して最後の3行を自動的に生成するにはどうすればよいですか?自動的に、「同じ」行を3回繰り返す必要がないことを意味します