added nodes.
This commit is contained in:
55
nodes/services/ntxheadnode.cpp
Normal file
55
nodes/services/ntxheadnode.cpp
Normal file
@@ -0,0 +1,55 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user