00001 /* 00002 FALCON - The Falcon Programming Language. 00003 FILE: $FILE$.h 00004 00005 Short description 00006 ------------------------------------------------------------------- 00007 Author: Giancarlo Niccolai 00008 Begin: gio ago 26 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 00016 #ifndef flc_UINTPAIR_H 00017 #define flc_UINTPAIR_H 00018 00019 #include <falcon/types.h> 00020 namespace Falcon { 00021 00026 template< class _T > 00027 class uint_pair 00028 { 00029 public: 00030 uint32 first; 00031 _T second; 00032 00033 uint_pair( uint32 f, _T s ): 00034 first(f), 00035 second(s) 00036 {} 00037 00038 }; 00039 00040 } 00041 00042 #endif 00043 00044 /* end of flc_uintpair.h */