summaryrefslogtreecommitdiff
path: root/tools/CrashReporter/AppDelegate.h
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2009-06-16 01:52:35 +0000
committerTaybin Rutkin <taybin@taybin.com>2009-06-16 01:52:35 +0000
commit6d66ac448fa1b3acbce829034611c12767b6501a (patch)
treec7f3a6630c0d5ace103b08ae20e0c26e84469cf5 /tools/CrashReporter/AppDelegate.h
parent5924788df5b87b287e75d6ef31088ac0951f8799 (diff)
setup Crash Reporter interface
- Add AppDelegate files. git-svn-id: svn://localhost/ardour2/branches/3.0@5200 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools/CrashReporter/AppDelegate.h')
-rw-r--r--tools/CrashReporter/AppDelegate.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/CrashReporter/AppDelegate.h b/tools/CrashReporter/AppDelegate.h
new file mode 100644
index 0000000000..0f9e406a03
--- /dev/null
+++ b/tools/CrashReporter/AppDelegate.h
@@ -0,0 +1,21 @@
+//
+// AppDelegate.h
+// CrashReporter
+//
+// Created by Taybin Rutkin on 6/10/09.
+// Copyright 2009 Penguin Sounds. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+
+
+@interface AppDelegate : NSObject {
+ IBOutlet NSFormCell *nameField;
+ IBOutlet NSFormCell *emailField;
+ IBOutlet NSTextView *descriptionView;
+ IBOutlet NSTextView *stackTrackView;
+}
+
+- (IBAction)sendButton:(id)sender;
+
+@end