| 359 | } |
| 360 | |
| 361 | std::shared_ptr<ft0cc::doc::groove> CFamiTrackerModule::GetGroove(unsigned index) { |
| 362 | return index < MAX_GROOVE ? m_pGrooveTable[index] : nullptr; |
| 363 | } |
| 364 | |
| 365 | std::shared_ptr<const ft0cc::doc::groove> CFamiTrackerModule::GetGroove(unsigned index) const { |
| 366 | return index < MAX_GROOVE ? m_pGrooveTable[index] : nullptr; |
no outgoing calls
no test coverage detected