Lottie.h 911 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // Lottie.h
  3. // Pods
  4. //
  5. // Created by brandon_withrow on 1/27/17.
  6. //
  7. // Dream Big.
  8. #if __has_feature(modules)
  9. @import Foundation;
  10. #else
  11. #import <Foundation/Foundation.h>
  12. #endif
  13. #ifndef Lottie_h
  14. #define Lottie_h
  15. //! Project version number for Lottie.
  16. FOUNDATION_EXPORT double LottieVersionNumber;
  17. //! Project version string for Lottie.
  18. FOUNDATION_EXPORT const unsigned char LottieVersionString[];
  19. #include <TargetConditionals.h>
  20. #if TARGET_OS_IPHONE || TARGET_OS_SIMULATOR
  21. #import "LOTAnimationTransitionController.h"
  22. #import "LOTAnimatedSwitch.h"
  23. #import "LOTAnimatedControl.h"
  24. #endif
  25. #if TARGET_OS_IPHONE || TARGET_OS_SIMULATOR
  26. #import "LOTCacheProvider.h"
  27. #endif
  28. #import "LOTAnimationView.h"
  29. #import "LOTAnimationCache.h"
  30. #import "LOTComposition.h"
  31. #import "LOTBlockCallback.h"
  32. #import "LOTInterpolatorCallback.h"
  33. #import "LOTValueCallback.h"
  34. #import "LOTValueDelegate.h"
  35. #endif /* Lottie_h */