Wt examples 3.1.10
|
00001 /* this is a -*-C++-*- file 00002 * Copyright (C) 2005 Wim Dumon 00003 * 00004 * See the LICENSE file for terms of use. 00005 */ 00006 00007 #ifndef DICTIONARY_H_ 00008 #define DICTIONARY_H_ 00009 00010 #include <string> 00011 00012 enum Dictionary { 00013 DICT_EN = 0, 00014 DICT_NL = 1 00015 }; 00016 00017 extern std::wstring RandomWord(Dictionary dictionary); 00018 00019 #endif