mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
17 lines
211 B
Mathematica
17 lines
211 B
Mathematica
|
#import <Foundation/NSObject.h>
|
||
|
#import <Foundation/NSString.h>
|
||
|
|
||
|
@interface TestFramework : NSObject
|
||
|
{
|
||
|
|
||
|
}
|
||
|
-(NSString *)test;
|
||
|
@end
|
||
|
|
||
|
@implementation TestFramework
|
||
|
-(NSString *)test
|
||
|
{
|
||
|
return @"Something";
|
||
|
}
|
||
|
@end
|