Mercurial > hg > Members > kono > Cerium
view TaskManager/Test/test_render/SceneGraphIterator.h @ 354:81b25e5d5379
add example/get_segment and change spe/DrawSpan.cpp
author | koba |
---|---|
date | Wed, 15 Jul 2009 17:39:51 +0900 (2009-07-15) |
parents | 3f4c6a75d7e0 |
children | 25c820b6060e |
line wrap: on
line source
#ifndef INCLUDED_SCENE_GRAPH_ITERATOR #define INCLUDED_SCENE_GRAPH_ITERATOR #ifndef INCLUDED_SCENE_GRAPH # include "SceneGraph.h" #endif class SceneGraphIterator { public: // 走査する SceneGraphList SceneGraphPtr list; // 現在参照中の SceneGraph SceneGraphPtr cur; void set(SceneGraphPtr list); int hasNext(void); int hasNext(int id); int hasNextGroup(int id); void next(void); void next(int id); void nextGroup(int id); void remove(void); SceneGraphPtr get(void); }; typedef SceneGraphIterator *SceneGraphIteratorPtr; #endif