Tagged Questions
21
votes
6answers
2k 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 ...
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
99 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 ...