mark EOFault and GDL2KVCNSObject classes as root classes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@36233 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
buzzdee 2013-03-02 14:37:25 +00:00
parent 95d5d66287
commit d3e8af19e5
3 changed files with 13 additions and 2 deletions

View file

@ -92,7 +92,11 @@ initialize(void)
of efficiency, we don't use the do {} while (0) pattern. */
#define INITIALIZE if (!initialized) initialize();
#ifdef __has_attribute
#if __has_attribute(objc_root_class)
__attribute__((objc_root_class))
#endif
#endif
@interface GDL2KVCNSObject
@end
@interface GDL2KVCNSObject (NSKeyValueCoding) <NSObject>