aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/mac/HelloWorldDelegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'example/mac/HelloWorldDelegate.h')
-rw-r--r--example/mac/HelloWorldDelegate.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/example/mac/HelloWorldDelegate.h b/example/mac/HelloWorldDelegate.h
deleted file mode 100644
index 40e910b770..0000000000
--- a/example/mac/HelloWorldDelegate.h
+++ /dev/null
@@ -1,27 +0,0 @@
-
-/*
- * Copyright 2011 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-
-#import <Cocoa/Cocoa.h>
-#import "SkSampleNSView.h"
-#import "SkOptionsTableView.h"
-@interface HelloWorldDelegate : NSObject <NSApplicationDelegate> {
- NSWindow* fWindow;
- SkSampleNSView* fView;
- SkOptionsTableView* fOptions;
-}
-
-@property (assign) IBOutlet NSWindow* fWindow;
-@property (assign) IBOutlet SkSampleNSView* fView;
-@property (assign) IBOutlet SkOptionsTableView* fOptions;
-
-- (IBAction)toiPadSize:(id)sender;
-
-- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender;
-
-@end