| 107 | } |
| 108 | |
| 109 | std::unique_ptr<CSongView> CFamiTrackerModule::MakeSongView(unsigned index, bool showSkippedRows) { // // // |
| 110 | return std::make_unique<CSongView>(GetChannelOrder(), *GetSong(index), showSkippedRows); |
| 111 | } |
| 112 | |
| 113 | std::unique_ptr<CConstSongView> CFamiTrackerModule::MakeSongView(unsigned index, bool showSkippedRows) const { // // // |
| 114 | return std::make_unique<CConstSongView>(GetChannelOrder(), *GetSong(index), showSkippedRows); |
no outgoing calls
no test coverage detected