Maraiah/source/tycho/cc_headers/mapprops.h

24 lines
267 B
C++

#pragma once
#include <QDialog>
#include <memory>
namespace Ui
{
class MapProps;
}
class MapProps : public QDialog
{
Q_OBJECT
public:
explicit MapProps(QWidget *parent = nullptr);
~MapProps();
private:
std::unique_ptr<Ui::MapProps> ui;
};
// EOF