#ifndef GROUNDMAPANNOTATIONWINDOW_H
|
#define GROUNDMAPANNOTATIONWINDOW_H
|
|
#include <QMainWindow>
|
|
namespace Ui {
|
class GroundMapAnnotationWindow;
|
}
|
|
class GroundMapAnnotationWindow : public QMainWindow
|
{
|
Q_OBJECT
|
|
public:
|
explicit GroundMapAnnotationWindow(QWidget *parent = 0);
|
~GroundMapAnnotationWindow();
|
|
private:
|
Ui::GroundMapAnnotationWindow *ui;
|
};
|
|
#endif // GROUNDMAPANNOTATIONWINDOW_H
|