FSParseRssPodcastFeedRequest.h 664 B

1234567891011121314151617181920212223242526
  1. /*
  2. * This file is part of the FreeStreamer project,
  3. * (C)Copyright 2011-2013 Matias Muhonen.
  4. * See the file ''LICENSE'' for using the code.
  5. */
  6. #import "FSXMLHttpRequest.h"
  7. /**
  8. * Use this request for retrieving the contents for a podcast RSS feed.
  9. * Upon request completion, the resulting playlist items are
  10. * in the playlistItems property.
  11. *
  12. * See the FSXMLHttpRequest class how to form a request to retrieve
  13. * the RSS feed.
  14. */
  15. @interface FSParseRssPodcastFeedRequest : FSXMLHttpRequest {
  16. NSMutableArray *_playlistItems;
  17. }
  18. /**
  19. * The playlist items stored in the FSPlaylistItem class.
  20. */
  21. @property (readonly) NSMutableArray *playlistItems;
  22. @end