| 23 | } |
| 24 | |
| 25 | void DataAccessRepository::addModification(const CursorInRevision& cursor, DataAccess::DataAccessFlags flags, |
| 26 | const KDevelop::RangeInRevision& range) |
| 27 | { |
| 28 | Q_D(DataAccessRepository); |
| 29 | |
| 30 | Q_ASSERT(!range.isValid() || flags == DataAccess::Write); |
| 31 | d->m_modifications.append(new DataAccess(cursor, flags, range)); |
| 32 | } |
| 33 | |
| 34 | void DataAccessRepository::clear() |
| 35 | { |