Adds Objective C++ Build capabilities to cscore mac (#1029)

This commit is contained in:
Thad House
2018-05-14 19:34:26 -07:00
committed by Peter Johnson
parent 406e18663d
commit 1d6eb629ad
3 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#import <Foundation/Foundation.h>
@interface XYZPerson : NSObject
- (void)sayHello;
@end
@implementation XYZPerson
- (void)sayHello {
NSLog(@"Hello, World!");
}
@end