00001 00002 // MathGUI = 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 // // 00030 00031 00032 // optimization for GCC compiler 00033 #if defined(__GNUG__) && !defined(__APPLE__) 00034 #pragma implementation "OptBasePanel.h" 00035 #endif 00036 00037 // includes 00038 #include "mg/mgprec.h" 00039 00040 #ifndef mgPRECOMP 00041 #include <mg/OptBasePanel.h> 00042 #endif 00043 00044 00045 00046 IMPLEMENT_ABSTRACT_CLASS( mgOptBasePanel, wxPanel ) 00047 00048 00049 00050 00051
[ Top ] |