$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] generic programming : variadic virtual function
From: Bruno Lalande (bruno.lalande_at_[hidden])
Date: 2009-08-26 09:55:08
Wouldn't the following give the desired result?
template<typename S, typename W>
class derived : public baseclass<S,W>
{
void operator()(S s, W w);
}
template<typename S>
class derived<S, void> : public baseclass<S,void>
{
void operator()(S s);
}
Regards
Bruno