$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-users] [mpl] type --> wrapper<type>
From: Igor R (boost.lists_at_[hidden])
Date: 2009-07-19 11:33:59
Hello,
How to do in mpl the following:
template<template<class> class wrapper, class arg> struct wrap
{
typedef wrapper<arg> type;
};
Particularly, I've got a sequence of types, and I have to get
shared_ptr's of these types.
Thanks!