mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 11:14:00 +00:00
28 lines
447 B
Objective-C
28 lines
447 B
Objective-C
//
|
|
// File: VLAppController.h - Application wide controller
|
|
//
|
|
// Author(s):
|
|
//
|
|
// (MN) Matthias Neeracher
|
|
//
|
|
// Copyright © 2005-2007 Matthias Neeracher
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface VLAppController : NSObject {
|
|
IBOutlet id lilypondPath;
|
|
|
|
NSString * toolPath;
|
|
NSString * appPath;
|
|
}
|
|
|
|
- (IBAction) playNewPitch:(id)sender;
|
|
- (IBAction) selectLilypondPath:(id)sender;
|
|
|
|
@end
|
|
|
|
// Local Variables:
|
|
// mode:ObjC
|
|
// End:
|