MCPcopy Create free account
hub / github.com/LAStools/LAStools / begin

Method begin

src/validate_xml_writer.cpp:54–62  ·  view source on GitHub ↗

Begins a new structured section identified by the given key and makes it the current write context

Source from the content-addressed store, hash-verified

52
53/// Begins a new structured section identified by the given key and makes it the current write context
54BOOL ValidateXmlWriter::begin(const std::string& key, ContainerType type) {
55 if (file == nullptr) return FALSE;
56
57 printIndent(stream);
58 stream << "<" << key << ">\n";
59 indent++;
60
61 return TRUE;
62}
63
64/// Begins a sub-section within the current section and makes it the active write context
65BOOL ValidateXmlWriter::beginsub(const std::string& key, ContainerType type) {

Callers 15

mainFunction · 0.45
write_csv_rowFunction · 0.45
merge_groupsFunction · 0.45
sort_prefix_groupsFunction · 0.45
runMethod · 0.45
mainFunction · 0.45
GeoTiffInfoMethod · 0.45
parseVersionFunction · 0.45
getProjLibraryPathFunction · 0.45
load_proj_libraryFunction · 0.45
completeMethod · 0.45
merge_intervalsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected