GlobeEngine
LoadModelDialog.h
Go to the documentation of this file.
1 #ifndef LOADMODELDIALOG_H
2 #define LOADMODELDIALOG_H
3 
4 #include "ui_loadModelDialog.h"
5 #include <QDialog>
6 
7 namespace geViewer {
8  class LoadModelDialog : public QDialog
9  {
10  Q_OBJECT
11 
12  public:
13  LoadModelDialog(std::string _nameGuess, bool _repository);
15  Ui::LoadModelDialog* getUI() { return &ui; };
16  std::string getNameValue();
17  std::string getTypeValue();
18 
19  private:
20  Ui::LoadModelDialog ui;
21  };
22 }
23 #endif
std::string getTypeValue()
Definition: LoadModelDialog.cpp:31
Definition: FeaturePanel.h:10
~LoadModelDialog()
Definition: LoadModelDialog.cpp:21
Ui::LoadModelDialog * getUI()
Definition: LoadModelDialog.h:15
LoadModelDialog(std::string _nameGuess, bool _repository)
Definition: LoadModelDialog.cpp:5
std::string getNameValue()
Definition: LoadModelDialog.cpp:26
Definition: LoadModelDialog.h:8