00001 /* file name : octree.h 00002 * authors : Michael Brailsford 00003 * created : Sun Oct 28 16:45:03 -0500 2007 00004 * copyright : (c) 2007 Michael Brailsford 00005 */ 00006 00007 #ifndef OCTREE_H 00008 #define OCTREE_H 00009 00012 class Octree { 00013 private: 00014 protected: 00015 public: 00016 Octree(); 00017 Octree(Octree &); 00018 ~Octree(); 00019 }; 00020 #endif 00021