Well,
if you switch to functors, instead of functions I can offer you the following example ;) But I am
unsure if it really suits your needs.
#include <iostream>
template<class T>
struct function_template
{
void operator()(T value)const
{
std::cout << value << std::endl;
}
};
template<class T>
struct other_function_template
{
void operator()(T value)const
{
std::cout << value*value << std::endl;
}
};
struct function_template_wrapper
{
template
my closest attempt is this:
[...]
-- Ares Lagae Computer Graphics Research Group, Katholieke Universiteit Leuven http://www.cs.kuleuven.be/~ares/
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
With Kind Regards, Ovanes Markarian