Initial import of Cocoa code

This commit is contained in:
Neil Co 2008-12-09 17:11:33 +00:00
parent 7d3b181094
commit f08ef9f1e8
17 changed files with 6685 additions and 0 deletions

25
cocoa/AppController.h Normal file
View file

@ -0,0 +1,25 @@
//
// AppController.h
// Current Cost
//
// Created by Neil on 05/12/2008.
// Copyright 2008 Neil Cowburn. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#include "NCCurrentCost.h"
#include "CurrentCostView.h"
@interface AppController : NSObject <NCCurrentCostDelegate> {
IBOutlet CurrentCostView *ccView;
IBOutlet NSButton *captureButton;
@private
NCCurrentCost *ccm;
BOOL continueLoop;
}
@property (nonatomic, retain) NCCurrentCost *ccm;
- (IBAction)startDataCapture:(id)sender;
@end