mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 21:50:26 +00:00
12 lines
189 B
C++
12 lines
189 B
C++
|
#include <QDebug>
|
||
|
#include "qmlmapwidgethelper.h"
|
||
|
|
||
|
MapWidgetHelper::MapWidgetHelper(QObject *parent) : QObject(parent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void MapWidgetHelper::test()
|
||
|
{
|
||
|
qDebug() << "test";
|
||
|
}
|