00001 /* 00002 FALCON - The Falcon Programming Language. 00003 FILE: symlist.h 00004 00005 Declaration of a list of symbols. 00006 ------------------------------------------------------------------- 00007 Author: Giancarlo Niccolai 00008 Begin: lun ott 3 2005 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_symlist_H 00021 #define flc_symlist_H 00022 00023 #include <falcon/genericlist.h> 00024 00025 namespace Falcon { 00026 00027 class FALCON_DYN_CLASS SymbolList: public List 00028 { 00029 public: 00030 SymbolList() 00031 {} 00032 00033 SymbolList( const SymbolList &other ); 00034 00035 }; 00036 00037 } 00038 00039 #endif 00040 00041 /* end of symlist.h */