Tagged Questions
4
votes
2answers
199 views
What is this C++ technique for adding types to a class called?
I've just found some C++ code (at http://msdn.microsoft.com/en-us/library/k8336763%28VS.71%29.aspx), which uses a technique I've never seen before to add types to an existing class:
class Testpm {
...
1
vote
3answers
85 views
cast base class pointer to one of several possible derived type pointer based on condition
I have a base class B and several derived template classes D<int>, D<float>, D<double>, etc. (so more than ten)
In my program, I find a situation where I have a B pointer that I ...
0
votes
1answer
49 views
How to have a class contain different class types and call the members of those objects held?
In my program, I find a situation where I want a UserClass that
is a container that can hold heterogenous types
can call member functions of the objects held.
The set of types that are held is ...