Maraiah/source/tycho/cc_headers/mapprops.h

23 lines
344 B
C
Raw Normal View History

#pragma once
#include <QDialog>
#include "../ui/ui_mapprops.h"
2019-06-13 18:10:33 -07:00
class ProjectModel;
class MapProps : public QDialog, private Ui::MapProps
{
Q_OBJECT
public:
2019-06-13 18:10:33 -07:00
explicit MapProps(QSharedPointer<ProjectModel> proj,
QWidget *parent = nullptr);
~MapProps();
private:
2019-06-13 18:10:33 -07:00
QSharedPointer<ProjectModel> proj;
};
// EOF