3
votes
2answers
155 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
47 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 …
16
votes
5answers
759 views
C++ “Named Parameter Idiom” vs. Boost::Parameter library
I've looked at both the Named Parameter Idiom and the Boost::Parameter library. What advantages does each one have over the other? Is there a good reason to always choose one over the other, or might …
