1995-08-02 18:51:42 +00:00
|
|
|
/* Test Category for NSBundle.
|
|
|
|
Copyright (C) 1993,1994,1995 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
Written by: Adam Fedor <fedor@boulder.colorado.edu>
|
|
|
|
Date: Jul 1995
|
|
|
|
|
1996-05-12 00:56:10 +00:00
|
|
|
This file is part of the GNUstep Base Library.
|
1995-08-02 18:51:42 +00:00
|
|
|
|
|
|
|
*/
|
|
|
|
#include "MyCategory.h"
|
2000-06-13 14:50:40 +00:00
|
|
|
#include <Foundation/NSString.h>
|
1995-08-02 18:51:42 +00:00
|
|
|
|
|
|
|
@implementation NSObject(MyCategory)
|
|
|
|
|
|
|
|
- printMyName
|
|
|
|
{
|
2000-06-13 14:50:40 +00:00
|
|
|
printf("Class %s had MyCategory added to it\n", [[self description] cString]);
|
|
|
|
return self;
|
1995-08-02 18:51:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|