MCPcopy Create free account
hub / github.com/brofield/simpleini / OutputWriter

Class OutputWriter

SimpleIni.h:389–398  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

387 in order to output the INI file data.
388 */
389 class OutputWriter {
390 public:
391 OutputWriter() {}
392 virtual ~OutputWriter() {}
393 virtual void Write(const char *a_pBuf) = 0;
394
395 private:
396 OutputWriter(const OutputWriter &); // disable
397 OutputWriter &operator=(const OutputWriter &); // disable
398 };
399
400 /** OutputWriter class to write the INI data to a file */
401 class FileWriter : public OutputWriter {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected