mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 13:07:02 +00:00
16 lines
238 B
Plaintext
16 lines
238 B
Plaintext
@import <AppKit/CPDocumentController.j>
|
|
@import <AppKit/CPAlert.j>
|
|
|
|
@implementation DocumentController : CPDocumentController
|
|
{
|
|
}
|
|
|
|
- (id)init
|
|
{
|
|
self = [super init];
|
|
|
|
return [CPDocumentController sharedDocumentController];
|
|
}
|
|
|
|
@end
|