00001 00002 // MathCore = a WYSIWYG equation editor + a powerful math engine // 00003 // Copyright (C) 2003 by Francesco Montorsi // 00004 // // 00005 // This library is free software; you can redistribute it and/or // 00006 // modify it under the terms of the GNU Lesser General Public // 00007 // License as published by the Free Software Foundation; either // 00008 // version 2.1 of the License, or (at your option) any later // 00009 // version. // 00010 // // 00011 // This library is distributed in the hope that it will be useful, // 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of // 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // 00014 // GNU Lesser General Public License for more details. // 00015 // // 00016 // You should have received a copy of the GNU Lesser General Public // 00017 // License along with this program; if not, write to the Free // 00018 // Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, // 00019 // MA 02111-1307, USA. // 00020 // // 00021 // For any comment, suggestion or feature request, please contact // 00022 // the administrator of the project at frm@users.sourceforge.net // 00023 // // 00028 00029 00030 #ifndef MCPREC_H 00031 #define MCPREC_H 00032 00033 // all the hard work is already done in this header... 00034 #include <wx/wxprec.h> 00035 00036 #ifdef WX_PRECOMP 00037 00038 // ok; precompilation is supported 00039 #define mcPRECOMP 00040 #include "mc/mc.h" // our precompiled header 00041 #else 00042 00043 // the source file who included this file should include the 00044 // individual headers it requires to work... 00045 // anyway, a header file which is *always* required is CONFIG.H... 00046 #include "mc/config.h" 00047 #include "mc/Setup.h" 00048 00049 #endif 00050 00051 00052 #endif // MCPREC_H 00053
[ Top ] |