~jpakkane/libcolumbus/lessfuzz-test

« back to all changes in this revision

Viewing changes to include/WordStore.hh

  • Committer: Jussi Pakkanen
  • Date: 2013-01-31 10:23:45 UTC
  • Revision ID: jussi.pakkanen@canonical.com-20130131102345-naze75up8ho9cigg
Use trie for word backing storage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
    ~WordStore();
47
47
 
48
48
    WordID getID(const Word &w);
49
 
    const Word& getWord(const WordID id) const;
 
49
    Word getWord(const WordID id) const;
50
50
    bool hasWord(const WordID id) const;
51
51
};
52
52