Mercurial > hg > Game > Cerium
view Renderer/Engine/SceneGraphIterator.h @ 1998:ed30952c240e draft
change function read() to pread() in my_read
author | masa |
---|---|
date | Tue, 22 Apr 2014 00:58:37 +0900 (2014-04-21) |
parents | 3bc98f6d31ff |
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