Adding a category to NSObject which can dynamically provide an array
[ITFoundation.git] / ITCategory-NSObject.h
diff --git a/ITCategory-NSObject.h b/ITCategory-NSObject.h
new file mode 100644 (file)
index 0000000..96c7e31
--- /dev/null
@@ -0,0 +1,24 @@
+/*
+ *     ITKit
+ *  ITCategory-NSObject.h
+ *    Category which extends NSObject
+ *
+ *  Original Author : Joseph Spiros <joseph.spiros@ithinksw.com>
+ *   Responsibility : Joseph Spiros <joseph.spiros@ithinksw.com>
+ *
+ *  Copyright (c) 2002 - 2004 iThink Software.
+ *  All Rights Reserved
+ *
+ */
+
+
+#import <Cocoa/Cocoa.h>
+
+
+@interface NSObject (ITCategory)
+
++ (NSArray *)subclasses;
++ (NSArray *)directSubclasses;
+
+
+@end