| 145 | } |
| 146 | |
| 147 | void IdfFile::addObjects(const std::vector<IdfObject>& objects) { |
| 148 | for (const IdfObject& object : objects) { |
| 149 | addObject(object); |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | void IdfFile::insertObjectByIddObjectType(const IdfObject& object) { |
| 154 | for (auto it = m_objects.begin(), itEnd = m_objects.end(); it != itEnd; ++it) { |
no outgoing calls