Begins a new structured section identified by the given key and makes it the current write context
| 62 | |
| 63 | /// Begins a new structured section identified by the given key and makes it the current write context |
| 64 | BOOL ValidateCsvWriter::begin(const std::string& key, ContainerType type) { |
| 65 | if (file == nullptr) return FALSE; |
| 66 | |
| 67 | return TRUE; |
| 68 | } |
| 69 | |
| 70 | /// Begins a sub-section within the current section and makes it the active write context |
| 71 | BOOL ValidateCsvWriter::beginsub(const std::string& key, ContainerType type) { |
nothing calls this directly
no outgoing calls
no test coverage detected