feat: Add tool for creating file

This commit is contained in:
Petr Mironychev
2025-10-23 16:32:40 +02:00
parent fad2453dbe
commit e1025df21e
4 changed files with 170 additions and 0 deletions

View File

@ -24,6 +24,7 @@
#include <QJsonArray>
#include <QJsonObject>
#include "CreateNewFileTool.hpp"
#include "EditProjectFileTool.hpp"
#include "FindFileTool.hpp"
#include "FindSymbolTool.hpp"
@ -51,6 +52,7 @@ void ToolsFactory::registerTools()
registerTool(new EditProjectFileTool(this));
registerTool(new FindSymbolTool(this));
registerTool(new FindFileTool(this));
registerTool(new CreateNewFileTool(this));
LOG_MESSAGE(QString("Registered %1 tools").arg(m_tools.size()));
}