Bolts.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Copyright (c) 2014, Facebook, Inc.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under the BSD-style license found in the
  6. * LICENSE file in the root directory of this source tree. An additional grant
  7. * of patent rights can be found in the PATENTS file in the same directory.
  8. *
  9. */
  10. #import <Bolts/BFCancellationToken.h>
  11. #import <Bolts/BFCancellationTokenRegistration.h>
  12. #import <Bolts/BFCancellationTokenSource.h>
  13. #import <Bolts/BFExecutor.h>
  14. #import <Bolts/BFTask.h>
  15. #import <Bolts/BFTask+Exceptions.h>
  16. #import <Bolts/BFTaskCompletionSource.h>
  17. #if __has_include(<Bolts/BFAppLink.h>) && TARGET_OS_IPHONE && !TARGET_OS_WATCH && !TARGET_OS_TV
  18. #import <Bolts/BFAppLink.h>
  19. #import <Bolts/BFAppLinkNavigation.h>
  20. #import <Bolts/BFAppLinkResolving.h>
  21. #import <Bolts/BFAppLinkReturnToRefererController.h>
  22. #import <Bolts/BFAppLinkReturnToRefererView.h>
  23. #import <Bolts/BFAppLinkTarget.h>
  24. #import <Bolts/BFMeasurementEvent.h>
  25. #import <Bolts/BFURL.h>
  26. #import <Bolts/BFWebViewAppLinkResolver.h>
  27. #endif
  28. NS_ASSUME_NONNULL_BEGIN
  29. /**
  30. A string containing the version of the Bolts Framework used by the current application.
  31. */
  32. extern NSString *const BoltsFrameworkVersionString;
  33. NS_ASSUME_NONNULL_END