add the MarkerNode class to maintain markers during tree traversal

This commit is contained in:
Stephen Birarda 2013-03-26 14:06:34 -07:00
parent 5bd398931f
commit 761db13e90
2 changed files with 23 additions and 0 deletions

9
voxel/src/MarkerNode.cpp Normal file
View file

@ -0,0 +1,9 @@
//
// MarkerNode.cpp
// hifi
//
// Created by Stephen Birarda on 3/26/13.
//
//
#include "MarkerNode.h"

14
voxel/src/MarkerNode.h Normal file
View file

@ -0,0 +1,14 @@
//
// MarkerNode.h
// hifi
//
// Created by Stephen Birarda on 3/26/13.
//
//
#ifndef __hifi__MarkerNode__
#define __hifi__MarkerNode__
#include <iostream>
#endif /* defined(__hifi__MarkerNode__) */