Example #1
0
 public StringQueue(int i, Vocabulary vocab)
     : base(i)
 {
     this.vocab = vocab;
 }
Example #2
0
 public Plugin()
 {
     vocab = new Vocabulary();
 }
Example #3
0
 public WordListParser(string path, Vocabulary vocab)
 {
     this.path = path;
     this.vocab = vocab;
 }