12345678910111213141516171819202122232425262728 |
- //
- // Charts.h
- // Charts
- //
- // Copyright 2015 Daniel Cohen Gindi & Philipp Jahoda
- // A port of MPAndroidChart for iOS
- // Licensed under Apache License 2.0
- //
- // https://github.com/danielgindi/Charts
- //
- #include <TargetConditionals.h>
- #if TARGET_OS_IPHONE || TARGET_OS_TV || TARGET_IPHONE_SIMULATOR
- #import <UIKit/UIKit.h>
- #else
- #import <Cocoa/Cocoa.h>
- #endif
- //! Project version number for Charts.
- FOUNDATION_EXPORT double ChartsVersionNumber;
- //! Project version string for Charts.
- FOUNDATION_EXPORT const unsigned char ChartsVersionString[];
- // In this header, you should import all the public headers of your framework using statements like #import <Charts/PublicHeader.h>
|