#include "undirectednode.h" namespace Generic { template UndirectedNode::UndirectedNode(T value, NodeType* left, NodeType* right){ this->value = value; this->next = next; } template UndirectedNode::~UndirectedNode() {} }