Public Member Functions | |
| ChildIndex (int aParent, int anIndex) | |
| bool | operator< (const ChildIndex &other) const |
Public Attributes | |
| int | parentId |
| int | index |
Definition at line 111 of file GitModel.h.
| GitModel::ChildIndex::ChildIndex | ( | int | aParent, | |
| int | anIndex | |||
| ) | [inline] |
| bool GitModel::ChildIndex::operator< | ( | const ChildIndex & | other | ) | const [inline] |
Definition at line 118 of file GitModel.h.
00118 { 00119 if (parentId < other.parentId) 00120 return true; 00121 else if (parentId > other.parentId) 00122 return false; 00123 else return index < other.index; 00124 }
Definition at line 112 of file GitModel.h.
Definition at line 113 of file GitModel.h.
1.5.6