mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-27 02:30:53 +00:00
21 lines
397 B
Mathematica
21 lines
397 B
Mathematica
|
/* Test Category for NSBundle.
|
||
|
Copyright (C) 1993,1994,1995 Free Software Foundation, Inc.
|
||
|
|
||
|
Written by: Adam Fedor <fedor@boulder.colorado.edu>
|
||
|
Date: Jul 1995
|
||
|
|
||
|
This file is part of the GNU Objective C Class Library.
|
||
|
|
||
|
*/
|
||
|
#include "MyCategory.h"
|
||
|
|
||
|
@implementation NSObject(MyCategory)
|
||
|
|
||
|
- printMyName
|
||
|
{
|
||
|
printf("Class %s had MyCategory added to it\n", [self name]);
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
@end
|