00001 00002 /*************************************************************************** 00003 * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2002 * 00004 * * 00005 * This file is part of the FreeCAD CAx development system. * 00006 * * 00007 * This library is free software; you can redistribute it and/or * 00008 * modify it under the terms of the GNU Library General Public * 00009 * License as published by the Free Software Foundation; either * 00010 * version 2 of the License, or (at your option) any later version. * 00011 * * 00012 * This library is distributed in the hope that it will be useful, * 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00015 * GNU Library General Public License for more details. * 00016 * * 00017 * You should have received a copy of the GNU Library General Public * 00018 * License along with this library; see the file COPYING.LIB. If not, * 00019 * write to the Free Software Foundation, Inc., 59 Temple Place, * 00020 * Suite 330, Boston, MA 02111-1307, USA * 00021 * * 00022 ***************************************************************************/ 00023 00024 #include "PreCompiled.h" 00025 #ifndef _PreComp_ 00026 #endif 00027 00028 #include "DlgPointsReadImp.h" 00029 00030 using namespace PointsGui; 00031 00032 00033 00034 DlgPointsReadImp::DlgPointsReadImp(const char *FileName, QWidget* parent, Qt::WFlags fl ) 00035 : QDialog( parent, fl ) 00036 { 00037 _FileName = FileName; 00038 } 00039 00040 /* 00041 * Destroys the object and frees any allocated resources 00042 */ 00043 DlgPointsReadImp::~DlgPointsReadImp() 00044 { 00045 // no need to delete child widgets, Qt does it all for us 00046 } 00047 00048 00049 00050 #include "moc_DlgPointsReadImp.cpp"