Hello,
my situation is apperently simple; I must access to a key in a TreeMap:

Qt Code:
  1. private SortedMap< Word, Integer > _wo = new TreeMap< Word, Integer >();
  2. void foo(Word w) {
  3. _wo[w].SomeFunctionOf WordClass();
  4. }
To copy to clipboard, switch view to plain text mode 
is it possible access to it directly in that way?
thanks,