mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-05 06:01:17 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32187 72102866-910b-0410-8b05-ffd578937521
16 lines
206 B
Objective-C
16 lines
206 B
Objective-C
#import <Foundation/NSObject.h>
|
|
#import <Foundation/NSString.h>
|
|
|
|
@interface TestBundle : NSObject
|
|
{
|
|
|
|
}
|
|
-(NSString *)test;
|
|
@end
|
|
|
|
@implementation TestBundle
|
|
-(NSString *)test
|
|
{
|
|
return @"Something";
|
|
}
|
|
@end
|