00001 /*************************************************************************** 00002 geoedit.h - description 00003 ------------------- 00004 begin : Mon Apr 15 18:40:55 CEST 2002 00005 copyright : (C) 2002 by Thies H. Jochimsen 00006 email : jochimse@cns.mpg.de 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef GEOEDIT_H 00019 #define GEOEDIT_H 00020 00021 #include "geoeditview.h" 00022 00023 00025 00026 class GeoEditApp : public QObject, public GuiMainWindow { 00027 Q_OBJECT 00028 00029 public: 00030 GeoEditApp(); 00031 00032 static void usage(); 00033 00034 00035 private slots: 00036 void exitGeoEdit(); 00037 00038 00039 private: 00040 STD_string filename; 00041 ImageSet pilot; 00042 Geometry geometry; 00043 GeoEditView *view; 00044 }; 00045 00046 #endif 00047
1.5.6