Files
BionxControl/nodes/services/ntxicommand.cpp
Christoph Holzheuer 0b54793b08 added nodes.
2026-04-02 15:15:28 +02:00

21 lines
333 B
C++

#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