MCPcopy Create free account
hub / github.com/URLab-Sim/UnrealRoboticsLab / PackString

Function PackString

Source/URLab/Private/Bridge/MsgpackHelpers.cpp:54–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52
53template <typename Stream>
54void PackString(clmdep_msgpack::packer<Stream>& Packer, const FString& S)
55{
56 FTCHARToUTF8 Conv(*S);
57 Packer.pack_str(Conv.Length());
58 Packer.pack_str_body(Conv.Get(), Conv.Length());
59}
60
61template <typename Stream>
62void PackJsonValue(clmdep_msgpack::packer<Stream>& Packer, const TSharedPtr<FJsonValue>& V);

Callers 2

PackJsonObjectInnerFunction · 0.85
PackJsonValueFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected