Entities improvement

This commit is contained in:
Andrew nuark G 2020-12-15 21:44:41 +07:00
parent 19f223b474
commit 76ac624519
11 changed files with 39 additions and 27 deletions

View file

@ -8,7 +8,7 @@ dpoint_entity::dpoint_entity(const QString &title) : _title(title) {
}
}
unsigned long long dpoint_entity::id() {
entity_id dpoint_entity::id() {
return this->_id;
}
@ -16,7 +16,7 @@ QString dpoint_entity::title() {
return this->_title;
}
const QVector<unsigned long long> dpoint_entity::storages_ids() {
const QVector<entity_id> dpoint_entity::storages_ids() {
return this->_storages_ids;
}