Thread: c++ metadata
View Single Post
  #1 (permalink)  
Old 08-04-2003
sylvain sylvain is offline
Registered User
 
Name: Sylvain Fasel
Organization: university of Geneva
Project: quantum cryptographic systems
 
Join Date: Feb 2003
Location: Geneva (Switzerland)
Posts: 42
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!
Reply With Quote