public
Description: Forex Mac App for Gain Capital Demo API
Homepage:
Clone URL: git://github.com/djronin47/forexc.git
Click here to lend your support to: forexc and make a donation at www.pledgie.com !
forexc / Pair.h
100644 35 lines (29 sloc) 0.62 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//
// Pair.h
// ForeX
//
// Created by Matthew Hayford on 10/17/08.
// Copyright 2008 Ronin47. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
 
@interface Pair : NSObject {
NSString* pairname;
float pairbid;
float pairask;
float pairhigh;
float pairlow;
float pairtime;
}
 
- (void) setPairname : (NSString*)input;
- (NSString*) pairname;
- (void) setPairbid : (float)input;
- (float) pairbid;
- (void) setPairask : (float)input;
- (float) pairask;
- (void) setPairhigh : (float)input;
- (float) pairhigh;
- (void) setPairlow : (float)input;
- (float) pairlow;
- (void) setPairtime;
- (float) pairtime;
 
@end