| 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 { |
nothing calls this directly
no outgoing calls
no test coverage detected