4
1
mirror of https://github.com/QuasarApp/Snake.git synced 2025-04-29 03:04:42 +00:00

22 lines
316 B
C++

#include "diff.h"
QList<int> Diff::getRemoveIds() const {
return removeIds;
}
void Diff::setRemoveIds(const QList<int> &value) {
removeIds = value;
}
QList<int> Diff::getAddedIds() const {
return addedIds;
}
void Diff::setAddedIds(const QList<int> &value) {
addedIds = value;
}
Diff::Diff(){
}