00001 /* 00002 FALCON - The Falcon Programming Language. 00003 FILE: flc_itempage.h 00004 00005 Definition of the page that holds garbageable data pointers. 00006 ------------------------------------------------------------------- 00007 Author: Giancarlo Niccolai 00008 Begin: lun ott 4 2004 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_flc_itempage_H 00021 #define flc_flc_itempage_H 00022 00023 #include <falcon/spage.h> 00024 #include <falcon/garbageable.h> 00025 00026 namespace Falcon { 00027 00031 class GarbagePage: public SegregatedPage< Garbageable * > {}; 00032 00033 } 00034 00035 #endif 00036 00037 /* end of flc_itempage.h */