Fetch the repository succeeded.
#ifndef EJMAPLAYER_H
#define EJMAPLAYER_H
#include <QWidget>
#include <QBoxLayout>
enum MapLayerType {
ALL,
SURFACE,
OBJECT,
EVENT
};
class EjMapLayer : public QWidget
{
Q_OBJECT
public:
explicit EjMapLayer(QWidget *parent = 0);
signals:
public slots:
private :
void initToolBar(QVBoxLayout * layout);
void initWidget(QVBoxLayout * layout);
MapLayerType m_editType = SURFACE;
};
#endif // EJMAPLAYER_H
Sign in for post a comment
Comment ( 0 )