00001 /* Copyright (C) 2006-2008 Oliver Lemke <olemke@core-dump.info> 00002 00003 This program is free software; you can redistribute it and/or modify it 00004 under the terms of the GNU General Public License as published by the 00005 Free Software Foundation; either version 2, or (at your option) any 00006 later version. 00007 00008 This program is distributed in the hope that it will be useful, 00009 but WITHOUT ANY WARRANTY; without even the implied warranty of 00010 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00011 GNU General Public License for more details. 00012 00013 You should have received a copy of the GNU General Public License 00014 along with this program; if not, write to the Free Software 00015 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 00016 USA. */ 00017 00018 #ifndef matpack_h 00019 #define matpack_h 00020 00021 #if HAVE_CONFIG_H 00022 #include <config.h> 00023 #else 00024 #error "Please run ./configure in the top arts directory before compiling." 00025 #endif 00026 00027 #ifdef HAVE_NAMESPACES 00028 // We need those to support ansi-compliant compilers (gcc-3x) 00029 namespace std {} 00030 using namespace std; 00031 #endif 00032 00033 //--------------------< Set floating point type >-------------------- 00037 typedef NUMERIC Numeric; 00038 00039 //--------------------< Set integer type >-------------------- 00043 typedef INDEX Index; 00044 00045 #endif // matpackI_h