$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Steven Watanabe (steven_at_[hidden])
Date: 2006-07-27 16:36:08
AMDG
Is there any interest in a library for type erasure? My basic
idea is to define each operation separately and use a sequence
of them. As a simple example:
void f() {
erasure<boost::mpl::vector<ostreamable, incrementable> > object(0);
++object;
std::cout << object; //prints 1
}
In Christ,
Steven Watanabe