Initial import of Cocoa code
This commit is contained in:
parent
7d3b181094
commit
f08ef9f1e8
17 changed files with 6685 additions and 0 deletions
25
cocoa/AppController.h
Normal file
25
cocoa/AppController.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue