| 365 | } |
| 366 | |
| 367 | void IfcLoader::PushInt(int input) |
| 368 | { |
| 369 | std::string numberString = std::to_string(input); |
| 370 | uint16_t length = numberString.size(); |
| 371 | Push<uint16_t>((uint16_t)length); |
| 372 | Push((void*)numberString.c_str(), numberString.size()); |
| 373 | } |
| 374 | |
| 375 | double IfcLoader::GetDoubleArgument() const |
| 376 | { |
no test coverage detected