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

Method WriteXMLHeader

libraries/lib-project-file-io/ProjectFileIO.cpp:1739–1752  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1737}
1738
1739void ProjectFileIO::WriteXMLHeader(XMLWriter &xmlFile) const
1740{
1741 xmlFile.Write(wxT("<?xml "));
1742 xmlFile.Write(wxT("version=\"1.0\" "));
1743 xmlFile.Write(wxT("standalone=\"no\" "));
1744 xmlFile.Write(wxT("?>\n"));
1745
1746 xmlFile.Write(wxT("<!DOCTYPE "));
1747 xmlFile.Write(wxT("project "));
1748 xmlFile.Write(wxT("PUBLIC "));
1749 xmlFile.Write(wxT("\"-//audacityproject-1.3.0//DTD//EN\" "));
1750 xmlFile.Write(wxT("\"http://audacity.sourceforge.net/xml/audacityproject-1.3.0.dtd\" "));
1751 xmlFile.Write(wxT(">\n"));
1752}
1753
1754void ProjectFileIO::WriteXML(XMLWriter &xmlFile,
1755 bool recording /* = false */,

Callers

nothing calls this directly

Calls 1

WriteMethod · 0.45

Tested by

no test coverage detected