mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
22 lines
407 B
C
22 lines
407 B
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
|