CxLLM-SAFARI/Shared (App)/ViewController.h
CxAI Ops 5b384c5baa
Some checks are pending
ci / validate (push) Waiting to run
chore: initial commit (Phase 3 scaffold)
2026-05-16 10:52:05 -05:00

27 lines
377 B
Objective-C

//
// ViewController.h
// Shared (App)
//
// Created by Stephen Carter on 4/22/26.
//
#import <TargetConditionals.h>
#if TARGET_OS_IOS
#import <UIKit/UIKit.h>
typedef UIViewController PlatformViewController;
#elif TARGET_OS_OSX
#import <Cocoa/Cocoa.h>
typedef NSViewController PlatformViewController;
#endif
@interface ViewController : PlatformViewController
@end