MBXPlatform_Internal.h 458 B

123456789101112131415161718
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. // NOLINTNEXTLINE(modernize-use-using)
  4. typedef NS_ENUM(NSInteger, MBXPlatform)
  5. {
  6. /** Linux platform. */
  7. MBXPlatformLinux,
  8. /** iOS platform. */
  9. MBXPlatformIOS,
  10. /** Android platform. */
  11. MBXPlatformAndroid,
  12. /** MacOS platform. */
  13. MBXPlatformMacOS
  14. } NS_SWIFT_NAME(Platform);
  15. NSString* MBXPlatformToString(MBXPlatform platform);