17 INLINE EggCharacterDb::Key::
20 _table_type(table_type),
28 INLINE
bool EggCharacterDb::Key::
29 operator < (
const EggCharacterDb::Key &other)
const {
30 if (_joint != other._joint) {
31 return _joint < other._joint;
33 if (_table_type != other._table_type) {
34 return _table_type < other._table_type;
36 return _frame < other._frame;
This is a base class for EggJointNodePointer and EggMatrixTablePointer.