| 79 | } |
| 80 | |
| 81 | std::string generateFilename() |
| 82 | { |
| 83 | std::string filename = this->filename(); |
| 84 | if (m_hashPos != std::string::npos) |
| 85 | { |
| 86 | std::string fileCount = std::to_string(m_filenum++); |
| 87 | filename.replace(m_hashPos, 1, fileCount); |
| 88 | } |
| 89 | return filename; |
| 90 | } |
| 91 | |
| 92 | virtual bool srsOverridden() const |
| 93 | { return false; } |