ODIN
geoedit.h
1 /***************************************************************************
2  geoedit.h - description
3  -------------------
4  begin : Mon Apr 15 18:40:55 CEST 2002
5  copyright : (C) 2000-2021 by Thies H. Jochimsen
6  email : thies@jochimsen.de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef GEOEDIT_H
19 #define GEOEDIT_H
20 
21 #include "geoeditview.h"
22 
23 
25 
26 class GeoEditApp : public QObject, public GuiMainWindow {
27  Q_OBJECT
28 
29  public:
30  GeoEditApp();
31 
32  static void usage();
33 
34 
35  private slots:
36  void exitGeoEdit();
37 
38 
39  private:
40  STD_string filename;
41  ImageSet pilot;
42  Geometry geometry;
43  GeoEditView *view;
44 };
45 
46 #endif
47 
Geometry Settings.
Definition: geometry.h:179