Wt examples
3.2.2
|
00001 // This may look like C code, but it's really -*- C++ -*- 00002 /* 00003 * Copyright (C) 2011 Emweb bvba, Heverlee, Belgium 00004 * 00005 * See the LICENSE file for terms of use. 00006 */ 00007 00008 #ifndef DICTIONARY_H_ 00009 #define DICTIONARY_H_ 00010 00011 #include <string> 00012 00013 enum Dictionary { 00014 DICT_EN = 0, 00015 DICT_NL = 1 00016 }; 00017 00018 extern std::wstring RandomWord(Dictionary dictionary); 00019 00020 #endif //DICTIONARY_H_