overte/space-server/src/TreeNode.cpp
2013-04-12 13:23:07 -07:00

20 lines
No EOL
289 B
C++

//
// TreeNode.cpp
// hifi
//
// Created by Stephen Birarda on 2/13/13.
//
//
#include "TreeNode.h"
std::string EMPTY_STRING = "";
TreeNode::TreeNode() {
for (int i = 0; i < CHILDREN_PER_NODE; ++i) {
child[i] = NULL;
}
hostname = NULL;
nickname = NULL;
}