added nodes.

This commit is contained in:
Christoph Holzheuer
2026-04-02 15:15:28 +02:00
parent b05180f575
commit 0b54793b08
43 changed files with 4371 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#include <ntxicommand.h>
namespace ntx
{
bool NtxICommand::canUndo() const
{
return true;
}
NtxString NtxICommand::getDescription() const
{
return m_description;
}
void NtxICommand::setDescription(const NtxString& description)
{
m_description = description;
}
} // namespace ntx