| 136 | // CCompiler |
| 137 | |
| 138 | CCompiler::CCompiler(const CFamiTrackerModule &modfile, std::shared_ptr<CCompilerLog> pLogger) : |
| 139 | m_pModule(&modfile), |
| 140 | m_ChannelOrder(m_pModule->GetChannelOrder().Canonicalize()), // // // |
| 141 | title_(m_pModule->GetModuleName()), |
| 142 | artist_(m_pModule->GetModuleArtist()), |
| 143 | copyright_(m_pModule->GetModuleCopyright()), |
| 144 | m_pLogger(std::move(pLogger)) |
| 145 | { |
| 146 | ClearLog(); // // // |
| 147 | } |
| 148 | |
| 149 | CCompiler::~CCompiler() { |
| 150 | } |
nothing calls this directly
no test coverage detected