| 98 | typedef QHash<jo_id_t, JournallingObject *> JoIdMap; |
| 99 | |
| 100 | struct CheckPoint |
| 101 | { |
| 102 | CheckPoint( jo_id_t initID = 0, const DataFile& initData = DataFile( DataFile::JournalData ) ) : |
| 103 | joID( initID ), |
| 104 | data( initData ) |
| 105 | { |
| 106 | } |
| 107 | jo_id_t joID; |
| 108 | DataFile data; |
| 109 | } ; |
| 110 | typedef QStack<CheckPoint> CheckPointStack; |
| 111 | |
| 112 | JoIdMap m_joIDs; |
no outgoing calls
no test coverage detected