Mercurial > hg > Members > kono > Cerium
view Renderer/Engine/SceneGraphIterator.h @ 760:24a37fe8419a
first of all commit, not work Rendering/Test/create_task
author | hiroki |
---|---|
date | Thu, 04 Feb 2010 14:46:09 +0900 |
parents | 735f76483bb2 |
children |
line wrap: on
line source
#ifndef INCLUDED_SCENE_GRAPH_ITERATOR #define INCLUDED_SCENE_GRAPH_ITERATOR #include "SceneGraph.h" 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