mirror of
https://github.com/home-assistant/iOS.git
synced 2026-06-16 13:26:27 -05:00
24 lines
561 B
Objective-C
24 lines
561 B
Objective-C
//
|
|
// Shared.h
|
|
// Shared
|
|
//
|
|
// Created by Stephan Vanterpool on 6/24/18.
|
|
// Copyright © 2018 Robbie Trencheny. All rights reserved.
|
|
//
|
|
|
|
#if __has_include(<UIKit/UIKit.h>)
|
|
#import <UIKit/UIKit.h>
|
|
#else
|
|
#import <AppKit/AppKit.h>
|
|
#endif
|
|
|
|
//! Project version number for Shared.
|
|
FOUNDATION_EXPORT double SharedVersionNumber;
|
|
|
|
//! Project version string for Shared.
|
|
FOUNDATION_EXPORT const unsigned char SharedVersionString[];
|
|
|
|
// In this header, you should import all the public headers of your framework using statements like #import <Shared/PublicHeader.h>
|
|
|
|
|