Writes a simple value into the current context
| 74 | |
| 75 | /// Writes a simple value into the current context |
| 76 | BOOL ValidateCsvWriter::write(const std::string& value) { |
| 77 | if (file == nullptr) return FALSE; |
| 78 | |
| 79 | return TRUE; |
| 80 | } |
| 81 | |
| 82 | /// Writes a numeric value into the current context |
| 83 | BOOL ValidateCsvWriter::write(I32 value) { |
nothing calls this directly
no test coverage detected