21 lines
333 B
C++
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
|