mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 05:30:41 +00:00
17 lines
233 B
C
17 lines
233 B
C
|
#ifndef QMLMAPWIDGETHELPER_H
|
||
|
#define QMLMAPWIDGETHELPER_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class MapWidgetHelper : public QObject {
|
||
|
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit MapWidgetHelper(QObject *parent = NULL);
|
||
|
|
||
|
void test();
|
||
|
};
|
||
|
|
||
|
#endif
|