55 lines
911 B
C++
55 lines
911 B
C++
#include <ntxheadnode.h>
|
|
|
|
namespace ntx
|
|
{
|
|
|
|
bool NtxHeadNode::copyNode(NtxNodePtr node)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool NtxHeadNode::cutNode(NtxNodePtr node)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
NtxNodePtr NtxHeadNode::pasteNode(NtxNodePtr parent, int index)
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
bool NtxHeadNode::addNode(NtxNodePtr parent, NtxNodePtr node, int index)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool NtxHeadNode::deleteNode(NtxNodePtr node)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool NtxHeadNode::hasClipboard() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void NtxHeadNode::clearClipboard()
|
|
{
|
|
}
|
|
|
|
NtxNodePtr NtxHeadNode::peekClipboard() const
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
bool NtxHeadNode::validateNode(NtxNodePtr node) const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool NtxHeadNode::canAddToParent(NtxNodePtr parent, NtxNodePtr child) const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
} // namespace ntx
|