mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 11:14:00 +00:00
27 lines
495 B
Objective-C
27 lines
495 B
Objective-C
//
|
|
// MyDocument.h
|
|
// Vocalese
|
|
//
|
|
// Created by Matthias Neeracher on 12/17/05.
|
|
// Copyright __MyCompanyName__ 2005 . All rights reserved.
|
|
//
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "VLModel.h"
|
|
|
|
@interface VLDocument : NSDocument
|
|
{
|
|
VLSong * song;
|
|
}
|
|
|
|
- (VLSong *) song;
|
|
- (NSNumber *) songKey;
|
|
- (NSNumber *) songTime;
|
|
- (NSNumber *) songDivisions;
|
|
|
|
- (void) setKey:(int)key transpose:(BOOL)transpose;
|
|
- (void) setTimeNum:(int)num denom:(int)denom;
|
|
- (void) setDivisions:(int)divisions;
|
|
@end
|