MCPcopy Create free account
hub / github.com/audacity/audacity / Write

Method Write

libraries/lib-project-file-io/ProjectSerializer.cpp:464–470  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

462}
463
464void ProjectSerializer::Write(const wxString & value)
465{
466 mBuffer.AppendByte(FT_Raw);
467 Length len = value.length() * sizeof(wxStringCharType);
468 WriteLength( mBuffer, len );
469 mBuffer.AppendData(value.wx_str(), len);
470}
471
472void ProjectSerializer::WriteName(const wxString & name)
473{

Callers 2

ProjectRateMethod · 0.45
AddMethod · 0.45

Calls 3

AppendByteMethod · 0.80
AppendDataMethod · 0.80
lengthMethod · 0.45

Tested by

no test coverage detected