up vote 9 down vote favorite
7
share [g+] share [fb]

I'm trying to typedef either an unordered_map or std::map depending whether there are TR1 libraries available. But I don't want to specify the template parameters. From what i've read so far, typedef'ing templates without arguments is not possible until official c++0x standard is available. So does anyone know an elegant workaround for this?

#ifdef _TR1
#include <unordered_map> 
typedef std::tr1::unordered_map MyMap; //error C2976: too few template arguments
#else
#include <map> 
typedef std::map MyMap; //error C2976: too few template arguments
#endif
link|improve this question

See this very close question : stackoverflow.com/questions/544842/c-typedef-ing-stl and the provided answers. Template typedefs are not valid C++ commands – Benoît Sep 24 '09 at 22:21
Benoit - Thanks, thats exactly what i was looking for – Rollin_s Sep 24 '09 at 22:31
feedback

2 Answers

up vote 18 down vote accepted

The way I've seen this done is to wrap the typedef in a template-struct:

template<typename KeyType, typename MappedType>
struct myMap
{
#ifdef _TR1
    typedef std::tr1::unordered_map<KeyType, MappedType> type;
#else
    typedef std::map<KeyType, MappedType> type;
#endif
};

Then in your code you invoke it like so:

myMap<key, value>::type myMapInstance;

It may be a little more verbose than what you want, but I believe it meets the need given the current state of C++.

link|improve this answer
2  
It is indeed the usual way to simulate the lack of template typedefs in C++. However, I would have named the typedef "type" instead of "value", it seems more correct semantically speaking and it is more idiomatic. – Luc Touraille Sep 25 '09 at 12:13
1  
Code updated, thanks – fbrereto Sep 25 '09 at 18:52
feedback

You have to use full types for typedefs.

Use a #define macro instead.

link|improve this answer
1  
Sometimes it's best to fall back on the old ways. Duct tape programming at its best. – Mark Ransom Sep 24 '09 at 22:17
2  
unfortunately macros don't respect scope. – sellibitze Sep 25 '09 at 12:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.