|
c++ metadata
Hi!
Just a little question: How could I use metadata when compiling a .ice file using slice2cpp?
I am trying to instruct the slice2cpp compiler to use a multimap instead of a map to implement a dictionary.
I tried different variant, including:
["c++:multimap"] dictionary<string,string> myDict;
["cpp:::std::multimap"] dictionary<string,string> myDict;
and stuff like that, following the example at the top of page 123 of Ice-1.1.0b.pdf, but nothing worked.
Thanks in advance for your help!
|