//
//  AppDelegate.h
//  QCDemo
//
//  Created by Robert Metcalfe on 27/05/13.
//  Copyright (c) 2013 Robert Metcalfe. All rights reserved.
//

#import <Cocoa/Cocoa.h>
#import <Quartz/Quartz.h>

@interface AppDelegate : NSObject  <NSApplicationDelegate> //{
//@private
//    NSWindow *window;
//    QCView *qcView;
//}

@property (assign) IBOutlet NSWindow *window;
@property (assign) IBOutlet QCView *qcView;
- (IBAction)loadComposition:(id)sender;

@end