MCPcopy Create free account
hub / github.com/ThatOpen/engine_web-ifc / PushInt

Method PushInt

src/cpp/web-ifc/parsing/IfcLoader.cpp:367–373  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers 2

WriteValueFunction · 0.80
WriteSetFunction · 0.80

Calls 1

sizeMethod · 0.80

Tested by

no test coverage detected