| 69 | DEFINE_GET_OBJECT_MODEL_TABLE(ObjectTracker) |
| 70 | |
| 71 | void ObjectTracker::Init() noexcept |
| 72 | { |
| 73 | objectsCancelled.Clear(); |
| 74 | numObjects = 0; |
| 75 | usingM486Labelling = false; |
| 76 | // Clear out all object names in case of late object model requests |
| 77 | for (ObjectDirectoryEntry& ode : objectDirectory) |
| 78 | { |
| 79 | ode.Init(""); |
| 80 | } |
| 81 | usingM486Naming = false; |
| 82 | } |
| 83 | |
| 84 | void ObjectTracker::HandleM486T(unsigned int p_numObjects) noexcept |
| 85 | { |
no test coverage detected