| 117 | |
| 118 | std::string AbstractFileWriter::GetOutputLocation() const { return d->m_Location; } |
| 119 | void AbstractFileWriter::SetOutputStream(const std::string &location, std::ostream *os) |
| 120 | { |
| 121 | d->m_Location = location; |
| 122 | d->m_Stream = os; |
| 123 | } |
| 124 | |
| 125 | std::ostream *AbstractFileWriter::GetOutputStream() const { return d->m_Stream; } |
| 126 | AbstractFileWriter::~AbstractFileWriter() |
no outgoing calls