00001 // -*- C++ -*- 00002 // 00003 // Copyright (c) 2006 by Rafael Ostertag 00004 // 00005 // This program is free software; you can redistribute it and/or modify 00006 // it under the terms of the GNU General Public License as published by 00007 // the Free Software Foundation; either version 2 of the License, or 00008 // (at your option) any later version. 00009 // 00010 // This program is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 // GNU General Public License for more details. 00014 // 00015 // You should have received a copy of the GNU General Public License 00016 // along with this program; if not, write to the Free Software 00017 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00018 // 00019 // 00020 // $Id: castype.h,v 1.7 2006/12/28 00:31:01 rafi Exp $ 00021 // 00022 00034 #ifndef _CASTYPE_H 00035 #define _CASTYPE_H 00036 00037 #ifdef HAVE_CONFIG_H 00038 #include "config.h" 00039 #endif 00040 00041 #include <vector> 00042 #include <functional> 00043 00044 #include "casobject.h" 00045 00051 typedef int CASType; 00057 const CASType CT_LONGINT = 1; 00063 const CASType CT_VARIABLE = 100; 00069 const CASType CT_SUM = 200; 00075 const CASType CT_PRODUCT = 300; 00081 const CASType CT_FRACTION = 400; 00082 00083 #endif /* _CASTYPE_H */
1.4.7