Added another way to subclass CPDocumentController

This commit is contained in:
ggsato
2012-05-25 16:54:10 +09:00
parent 2a0ee14130
commit 0dbebf2f04
27 changed files with 6847 additions and 0 deletions
@@ -0,0 +1,15 @@
@import <AppKit/CPDocumentController.j>
@import <AppKit/CPAlert.j>
@implementation DocumentController : CPDocumentController
{
}
- (id)init
{
self = [super init];
return self;
}
@end