#include <BonnMotionFileCache.h>
Public Types | |
typedef std::vector< double > | Line |
Public Member Functions | |
const Line * | getLine (int nodeId) const |
Private Types | |
typedef std::list< Line > | LineList |
Private Attributes | |
LineList | lines |
Friends | |
class | BonnMotionFileCache |
|
|
|
|
|
00025 { 00026 LineList::const_iterator it = lines.begin(); 00027 for (int i=0; i<nodeId && it!=lines.end(); i++) it++; 00028 return (it==lines.end()) ? NULL : &(*it); 00029 }
|
|
|
|
|