MCPcopy Create free account
hub / github.com/ZDoom/Raze / GetString

Method GetString

source/common/engine/serializer.cpp:583–597  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

581//==========================================================================
582
583const char *FSerializer::GetString(const char *key)
584{
585 auto val = r->FindKey(key);
586 if (val != nullptr)
587 {
588 if (val->IsString())
589 {
590 return val->GetString();
591 }
592 else
593 {
594 }
595 }
596 return nullptr;
597}
598
599//==========================================================================
600//

Callers 6

serializer.cppFile · 0.45
GetKeyMethod · 0.45
GetOutputMethod · 0.45
GetCompressedOutputMethod · 0.45
DictionaryToStringFunction · 0.45
DictionaryFromStringFunction · 0.45

Calls 1

FindKeyMethod · 0.45

Tested by

no test coverage detected