IndexedPlayerItem.m 302 B

1234567891011121314151617
  1. #import "IndexedPlayerItem.h"
  2. #import "IndexedAudioSource.h"
  3. @implementation IndexedPlayerItem {
  4. IndexedAudioSource *_audioSource;
  5. }
  6. -(void)setAudioSource:(IndexedAudioSource *)audioSource {
  7. _audioSource = audioSource;
  8. }
  9. -(IndexedAudioSource *)audioSource {
  10. return _audioSource;
  11. }
  12. @end