李太白3028
2025-07-21 b6834fddd1a8949e38f61de599d56782c44e64ae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "groundmapannotationwindow.h"
#include "ui_groundmapannotationwindow.h"
 
GroundMapAnnotationWindow::GroundMapAnnotationWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::GroundMapAnnotationWindow)
{
    ui->setupUi(this);
}
 
GroundMapAnnotationWindow::~GroundMapAnnotationWindow()
{
    delete ui;
}