C++ 0x has template typedefs. See here. Current spec of C++ does not.
What do you like to use as work around ? Container objects or Macros ? Do you feel its worth it ?
|
|
C++ 0x has template typedefs. See here. Current spec of C++ does not. What do you like to use as work around ? Container objects or Macros ? Do you feel its worth it ?
|
|||
|
|
|
|
The canonical way is to use a metafunction like thus:
This is also used in the STL ( It's bloated, but it's the best alternative 99% of the time. Using macros here is not worth the many downsides. (EDIT: I've amended the code to reflect Boost/STL conventions as pointed out by Daniel in his comment.) |
|||
|
|
|
GOTW dealt with this topic a while ago: http://www.gotw.ca/gotw/079.htm |
||
|
|
|
|
How about this?
|
||
|
|