Tagged Questions
3
votes
2answers
313 views
Why do Boost Parameter elected inheritance rather than composition?
I suppose most of the persons on this site will agree that implementation can be outsourced in two ways:
private inheritance
composition
Inheritance is most often abused. Notably, public ...
0
votes
1answer
56 views
How to use boost::ref with Boost.Parameter library when passing arguments?
I use the Boost.Parameter library for providing named parameters to a constructor.
BOOST_PARAMETER_NAME(windowFunction)
namespace detail
{
struct ClassAImpl
{
template <class ...
0
votes
1answer
100 views
Using friends with base classes for Boost Parameter
I'm using the Boost Parameter tutorial to create a named-parameter constructor for a playing card generator. The tutorial says to put the ArgumentPack into a base class, but I want to modify variables ...