| Rev | Line | |
|---|
| [13478] | 1 | //
|
|---|
| 2 | // Delegate.m
|
|---|
| 3 | // TrivialDocuments
|
|---|
| 4 | //
|
|---|
| 5 | // Created by R. Matthew Emerson on 3/3/10.
|
|---|
| 6 | // Copyright 2010 __MyCompanyName__. All rights reserved.
|
|---|
| 7 | //
|
|---|
| 8 |
|
|---|
| 9 | #import "Delegate.h"
|
|---|
| 10 | #import "DocumentController.h"
|
|---|
| 11 |
|
|---|
| 12 | @implementation Delegate
|
|---|
| 13 |
|
|---|
| 14 | - (void)applicationWillFinishLaunching:(NSNotification *)n
|
|---|
| 15 | {
|
|---|
| 16 | NSLog(@"applicationWillFinishLaunching");
|
|---|
| 17 | /* This will become the shared document controller. */
|
|---|
| 18 | [[DocumentController alloc] init];
|
|---|
| 19 | }
|
|---|
| 20 |
|
|---|
| 21 | @end
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.