Factory function
| 328 | |
| 329 | // Factory function |
| 330 | TrackListHolder TrackList::Create(AudacityProject *pOwner) |
| 331 | { |
| 332 | return std::make_shared<TrackList>(pOwner); |
| 333 | } |
| 334 | |
| 335 | #if 0 |
| 336 | TrackList &TrackList::operator= (TrackList &&that) |
no outgoing calls
no test coverage detected