mirror of
https://github.com/overte-org/overte.git
synced 2025-08-05 06:19:49 +02:00
20 lines
No EOL
289 B
C++
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;
|
|
} |