00001 /* 00002 FALCON - The Falcon Programming Language. 00003 FILE: engstrings.h 00004 00005 Declarations of engine string table 00006 ------------------------------------------------------------------- 00007 Author: Giancarlo Niccolai 00008 Begin: mar feb 13 2007 00009 00010 ------------------------------------------------------------------- 00011 (C) Copyright 2004: the FALCON developers (see list in AUTHORS file) 00012 00013 See LICENSE file for licensing details. 00014 */ 00015 00020 #ifndef flc_engstrings_H 00021 #define flc_engstrings_H 00022 00023 #include <falcon/setup.h> 00024 #include <falcon/types.h> 00025 #include <falcon/globals.h> 00026 #include <falcon/string.h> 00027 00028 namespace Falcon { 00029 00030 class FALCON_DYN_SYM StringTable; 00031 00032 const String &getMessage( uint32 id ); 00033 bool setTable( StringTable *tab ); 00034 00040 bool FALCON_DYN_SYM setEngineLanguage( const String &language ); 00041 00042 } 00043 00044 #endif 00045 00046 /* end of engstrings.h */