00001 /**************************************************************************** 00002 * 00003 * File: currency.h 00004 * 00005 * Description: define constant for currency compare Euro 00006 * 00007 * 00008 * Authors: Eric Santonacci <Eric.Santonacci@talc.fr> 00009 * 00010 * 00011 * $Id: currency.h,v 1.3 2003/02/25 13:37:30 eric Exp $ 00012 * 00013 ***************************************************************************/ 00014 00015 // 1 Euro equal.... 00016 #define EURO 1 // Euro 00017 #define FRF 6.55957 // French Francs 00018 #define DEM 1.9594 // Deutch Mark 00019 #define BEF 40.3399 // Belgium Francs 00020 #define ITL 1936.27 // Italian Lire 00021 #define LUF 40.3399 // Luxemburg 00022 #define IEP 0.787564 // Irish Pound 00023 00024 static const char* aCurrency[] = { "Euro", "FRF", "DEM", "BEF", "ITL", "LUF", "IEP", 0 };
1.4.2