Is there a usable alternative to Boost's bimap in C++0x?

I would like to avoid Boost, but fully embrace C++0x. If necessary, a slimmed down version of Boost's bimap would work for me (I need a constant bimap to switch between enums and corresponding strings) throughout my program. The map will be compile-time constant, so perhaps even two manually maintained maps aren't the optimal solution.

Thanks!

UPDATE: I found this on The Code Project, but it seems licensing may be an issue: http://www.codeproject.com/KB/stl/bimap.aspx?fid=12042&df=90&mpp=25&noise=3&sort=Position&view=Quick&fr=151#xx0xx

I'm just looking for a clean and easy solution (one header/source file or little extra, as two mirrorred maps are equally fine in my case).

link|improve this question

2  
Why do you want to avoid using boost? If it solves your problem... Note that boost contains many different libraries, some of which made it into the standard, but many of which are too specific to be added to the standard. – David Rodríguez - dribeas Apr 13 '11 at 10:29
@David: I understand, but 1) Boost on Windows is a hassle, 2) I want to learn C++ with this project; I know Boost is C++ and a good way to learn it, but I'd like to see what I can do myself and discover the already present functionality. Weird explanation I know, but everything in Boost (I would need) needs non-header-only stuff, which is big, at least. And I've been able to avoid/work around Boost quite simply for now, I'd like to keep it that way. I have reduced the problem to a container wrapper which essentially keeps two maps updated, which isn't really a hard thing to do yourself. – rubenvb Apr 13 '11 at 11:07
How is boost on Windows a hassle, especially when talking about a header-only library such as boost.bimap? Extract the headers, add them to your include directories, done. – ildjarn Apr 13 '11 at 19:45
feedback

2 Answers

up vote 1 down vote accepted

My feeling is a lot of the work that goes into Boost libraries is making them work with other libraries/STL.

If you don't need that capability, you could just use a class with a std::map<X*, Y*> and std::map<Y*, X*>. Then have methods like the following: add(X,Y), remove(X,Y), get_left(X) and get_right(Y).

If you want to store copies, add(X,Y) could allocate memory, and remove(X,Y) can de-allocate. Also, you can then define a destructor that calls remove(X,Y) on the remainder of the elements.

link|improve this answer
feedback

Short answer: no.

Long answer: nope.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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