00001 /* 00002 FALCON - The Falcon Programming Language. 00003 FILE: flc_refstring.h 00004 00005 Referenced string 00006 ------------------------------------------------------------------- 00007 Author: Giancarlo Niccolai 00008 Begin: mer giu 9 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 FALCON_STRINGREF_H 00021 #define FALCON_STRINGREF_H 00022 00023 #include <falcon/hstring.h> 00024 #include <falcon/refcount.h> 00025 00026 namespace Falcon 00027 { 00028 00029 typedef Refcounter< Hstring > StringRef; 00030 00031 } 00032 00033 #endif 00034 /* end of flc_refstring.h */