comparison TaskManager/Test/test_render/SceneGraphIterator.h @ 341:2a0fad8a817d

add param gid [SceneGraph.h], func [SceneGraphIterator]
author aaa
date Mon, 29 Jun 2009 20:28:42 +0900
parents 3f4c6a75d7e0
children 25c820b6060e
comparison
equal deleted inserted replaced
340:e32846d80b4a 341:2a0fad8a817d
14 SceneGraphPtr cur; 14 SceneGraphPtr cur;
15 15
16 void set(SceneGraphPtr list); 16 void set(SceneGraphPtr list);
17 int hasNext(void); 17 int hasNext(void);
18 int hasNext(int id); 18 int hasNext(int id);
19 int hasNextGroup(int id);
19 void next(void); 20 void next(void);
20 void next(int id); 21 void next(int id);
22 void nextGroup(int id);
21 void remove(void); 23 void remove(void);
22 SceneGraphPtr get(void); 24 SceneGraphPtr get(void);
23 }; 25 };
24 26
25 typedef SceneGraphIterator *SceneGraphIteratorPtr; 27 typedef SceneGraphIterator *SceneGraphIteratorPtr;