mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-04-26 01:34:40 +00:00
22 lines
316 B
C++
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(){
|
|
|
|
}
|