Finale PDK Framework 0.77
Power Up Your Finale Music Software
Loading...
Searching...
No Matches
ff_NSFCCtrlCanvas.h
1//
2// ff_NSFCCtrlCanvas.h
3//
4// Created by Jari Williamsson on 2017-08-10.
5//
6// ff_NSFCCtrlCanvas.mm should be include in the project only
7// if PDK_FRAMEWORK_CANVASCTRL has been defined.
8
9#ifdef PDK_FRAMEWORK_CANVASCTRL
10
11#import <Cocoa/Cocoa.h>
12#include "finaleframework.h"
13
14@interface NSFCCtrlCanvas : NSControl {
15
16/* Put any members here */
17
18 FCVirtualCanvasInstructions _instructions;
19
20}
21- (void) setInstructions:(FCVirtualCanvasInstructions *)i;
22@end
23
24
25#endif /* PDK_FRAMEWORK_CANVASCTRL */