Public Member Functions | |
| NodeIdent (SCENE_ID sid, NODE_ID nid) | |
| bool | operator== (const NodeIdent &ident) const |
| bool | operator< (const NodeIdent &ident) const |
Public Attributes | |
| SCENE_ID | sceneID |
| NODE_ID | nodeID |
Definition at line 33 of file scriptscene.h.
| bool VRUT::ScriptScene::NodeIdent::operator== | ( | const NodeIdent & | ident | ) | const [inline] |
| bool VRUT::ScriptScene::NodeIdent::operator< | ( | const NodeIdent & | ident | ) | const [inline] |
Definition at line 45 of file scriptscene.h.
00046 { 00047 if (sceneID == ident.sceneID) 00048 return nodeID < ident.nodeID; 00049 else 00050 return sceneID < ident.sceneID; 00051 }
Definition at line 36 of file scriptscene.h.
Definition at line 37 of file scriptscene.h.
1.5.5