added nodes.
This commit is contained in:
21
nodes/services/ntxicommand.cpp
Normal file
21
nodes/services/ntxicommand.cpp
Normal 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
|
||||
Reference in New Issue
Block a user