#ifndef SentrySwift_h #define SentrySwift_h #ifdef __cplusplus # if __has_include() # import # endif #endif #if __has_include() # if __has_include("SentryWithoutUIKit-Swift.h") # import "SentryWithoutUIKit-Swift.h" # else # import # endif #else // !__has_include() // needed for the check for SENTRY_HAS_UIKIT below # if __has_include() # import # else # import "SentryDefines.h" # endif // __has_include() # if SENTRY_HAS_UIKIT // this is needed to fix a build issue when building iOS-ObjectiveC where the definitions of some // UIKIt enums used from SentryUserFeedbackWidgetConfiguration.swift aren't visible from the // generated ObjC interface for that class in Sentry-Swift.h # import # endif // SENTRY_HAS_UIKIT # if __has_include("Sentry-Swift.h") # import "Sentry-Swift.h" # else # import # endif #endif // __has_include() #endif