Tagged Questions
The policy-based-design tag has no wiki summary.
13
votes
5answers
340 views
C++0x template question, determining return type
I am building a matrix library and I am trying to use the policy-based design.
So my base classes are classes that provide a storage method and some
access functions.
I also have a function matrix ...
8
votes
3answers
3k views
Policy based design and best practices - C++
struct InkPen
{
void Write()
{
this->WriteImplementation();
}
void WriteImplementation()
{
std::cout << "Writing using a inkpen" << std::endl;
}
};
struct BoldPen
...
4
votes
2answers
202 views
Partial specialization for a parent of multiple classes
I want to use partial specialization for a template class so that all children of that template class will use that specialization. Let me explain it with an example :)
template < typename T, ...
3
votes
2answers
228 views
Policy based design and defaults
Hard to come up with a good title for this question. What I really need is to be able to provide template parameters with different number of arguments in place of a single parameter. Doesn't make a ...
2
votes
3answers
339 views
Policy based design decisions
I have a class called Device that accepts two policies as far as I can see: StatePolicy and BehaviorPolicy.
The StatePolicy holds and manages the state of the device.
The BehaviorPolicy wraps the ...
2
votes
3answers
4k views
How to use typelists
I read about typelists in 'Modern C++ Design' and I understood it as some kind of union for types. By putting diffrent, non-related types in a typelist, one can use it to represent more than one type ...
2
votes
1answer
839 views
What is a good tutorial for C++ policy-based class design?
I have just started reading Modern C++ Design Generic programming and Design Patterns Applied and I am wondering if I need to go through some very basic tutorial on policy-based class design before I ...