DynamicMobileVLCKit.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*****************************************************************************
  2. * DynamicMobileVLCKit.h: dynamic library umbrella header
  3. *****************************************************************************
  4. * Copyright (C) 2016 VideoLabs SAS
  5. * $Id$
  6. *
  7. * Authors: Felix Paul Kühne <fkuehne # videolan.org>
  8. *
  9. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU Lesser General Public License as published by
  11. * the Free Software Foundation; either version 2.1 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public License
  20. * along with this program; if not, write to the Free Software Foundation,
  21. * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22. *****************************************************************************/
  23. #import <UIKit/UIKit.h>
  24. //! Project version number for DynamicMobileVLCKit.
  25. FOUNDATION_EXPORT double DynamicMobileVLCKitVersionNumber;
  26. //! Project version string for DynamicMobileVLCKit.
  27. FOUNDATION_EXPORT const unsigned char DynamicMobileVLCKitVersionString[];
  28. // In this header, you should import all the public headers of your framework using statements like #import <DynamicMobileVLCKit/PublicHeader.h>
  29. #import <DynamicMobileVLCKit/VLCAudio.h>
  30. #import <DynamicMobileVLCKit/VLCLibrary.h>
  31. #import <DynamicMobileVLCKit/VLCMedia.h>
  32. #import <DynamicMobileVLCKit/VLCMediaDiscoverer.h>
  33. #import <DynamicMobileVLCKit/VLCMediaList.h>
  34. #import <DynamicMobileVLCKit/VLCMediaPlayer.h>
  35. #import <DynamicMobileVLCKit/VLCMediaListPlayer.h>
  36. #import <DynamicMobileVLCKit/VLCMediaThumbnailer.h>
  37. #import <DynamicMobileVLCKit/VLCDialogProvider.h>
  38. #import <DynamicMobileVLCKit/VLCTime.h>
  39. #import <DynamicMobileVLCKit/VLCTranscoder.h>
  40. #import <DynamicMobileVLCKit/VLCRendererDiscoverer.h>
  41. #import <DynamicMobileVLCKit/VLCRendererItem.h>
  42. @class VLCMedia;
  43. @class VLCMediaLibrary;
  44. @class VLCMediaList;
  45. @class VLCTime;
  46. @class VLCVideoView;
  47. @class VLCAudio;
  48. @class VLCMediaThumbnailer;
  49. @class VLCMediaListPlayer;
  50. @class VLCMediaPlayer;
  51. @class VLCDialogProvider;
  52. @class VLCRendererDiscoverer;
  53. @class VLCRendererDiscovererDescription;
  54. @class VLCRendererItem;