1995-08-02 16:58:07 +00:00
|
|
|
/* Test Class 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 16:58:07 +00:00
|
|
|
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
2003-05-30 02:54:49 +00:00
|
|
|
#include <Foundation/NSString.h>
|
1995-08-02 16:58:07 +00:00
|
|
|
#include "LoadMe.h"
|
|
|
|
|
2005-02-22 11:22:44 +00:00
|
|
|
@implementation LoadMe
|
1995-08-02 16:58:07 +00:00
|
|
|
|
|
|
|
- init
|
|
|
|
{
|
|
|
|
[super init];
|
|
|
|
var = 10;
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- afterLoad
|
|
|
|
{
|
2003-05-30 02:54:49 +00:00
|
|
|
printf("%s's instance variable is %i\n", [[self description] cString], var);
|
1995-08-02 16:58:07 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|