mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Make Test class inheret Object
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@10757 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0eb3f0bbd4
commit
abbb8baa11
3 changed files with 12 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2001-08-21 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* config/config.loadtest.m: Make Test inheret from Object
|
||||
(Darwin objc checks that classes implement forward::).
|
||||
* config/config.objc.m: Likewise.
|
||||
|
||||
2001-08-20 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
|
||||
|
||||
* Documentation/gsdoc/ NSPipe.{gsdoc, html}: this class has been
|
||||
|
|
|
@ -5,7 +5,9 @@
|
|||
@end
|
||||
#endif
|
||||
|
||||
@interface Test
|
||||
#include <objc/Object.h>
|
||||
|
||||
@interface Test : Object
|
||||
static int test_result;
|
||||
+(void) load;
|
||||
+(int) test_result;
|
||||
|
|
|
@ -5,7 +5,9 @@
|
|||
@end
|
||||
#endif
|
||||
|
||||
@interface Test
|
||||
#include <objc/Object.h>
|
||||
|
||||
@interface Test : Object
|
||||
+(int) testResult;
|
||||
@end
|
||||
|
||||
|
|
Loading…
Reference in a new issue