6d66ac448f
- Add AppDelegate files. git-svn-id: svn://localhost/ardour2/branches/3.0@5200 d708f5d6-7413-0410-9779-e7cbd77b26cf
22 lines
407 B
Objective-C
22 lines
407 B
Objective-C
//
|
|
// 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
|