Maraiah/source/tycho-qt/mapprops.h

24 lines
267 B
C
Raw Normal View History

2019-05-15 21:28:33 -07:00
#pragma once
2019-05-16 14:50:59 -07:00
#include <QDialog>
2019-05-15 21:28:33 -07:00
#include <memory>
namespace Ui
{
class MapProps;
}
2019-05-16 14:50:59 -07:00
class MapProps : public QDialog
2019-05-15 21:28:33 -07:00
{
Q_OBJECT
public:
explicit MapProps(QWidget *parent = nullptr);
~MapProps();
private:
std::unique_ptr<Ui::MapProps> ui;
};
// EOF