ifcviewer: rename SceneLoader::Entry to Model

The struct holds per-model bookkeeping; Model describes its contents
rather than its container relationship.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Dion Moult
2026-04-28 19:31:48 +10:00
parent 7bc64bef1a
commit 8282f691e8
2 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -107,7 +107,7 @@ private slots:
void onElementPollTick();
private:
struct Entry {
struct Model {
uint32_t id = 0;
QString file_path;
QString display_name;
@@ -123,7 +123,7 @@ private:
void startDataSourceLoad(uint32_t mid);
ViewportWindow* viewport_ = nullptr;
std::map<uint32_t, Entry> models_;
std::map<uint32_t, Model> models_;
std::deque<uint32_t> load_queue_;
uint32_t next_model_id_ = 1;
uint32_t next_object_id_ = 1;