#include "drawtool.h"
DrawTool::DrawTool(QObject* parent) :
BaseTool{parent} {}
QString DrawTool::name() const
{
static const QString result = tr("Draw");
return result;
}
QString DrawTool::toolTip() const
{
static const QString result = tr("Draw new elements into the model.");
return result;
}