mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
Adds Objective C++ Build capabilities to cscore mac (#1029)
This commit is contained in:
committed by
Peter Johnson
parent
406e18663d
commit
1d6eb629ad
12
cscore/src/main/native/objcpp/objcpptemp.mm
Normal file
12
cscore/src/main/native/objcpp/objcpptemp.mm
Normal file
@@ -0,0 +1,12 @@
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@interface XYZPerson : NSObject
|
||||
- (void)sayHello;
|
||||
@end
|
||||
|
||||
|
||||
@implementation XYZPerson
|
||||
- (void)sayHello {
|
||||
NSLog(@"Hello, World!");
|
||||
}
|
||||
@end
|
||||
Reference in New Issue
Block a user