File: Trading.h

package info (click to toggle)
gnustep-dl2 0.12.0-9%2Bnmu1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 7,232 kB
  • sloc: objc: 61,721; makefile: 82; sh: 22
file content (34 lines) | stat: -rw-r--r-- 771 bytes parent folder | download | duplicates (5)
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
#include <EOAccess/EOAccess.h>
#include <EOControl/EOControl.h>
#include <Foundation/Foundation.h>

@interface Trading : NSObject
{
  EOModel *_model;
  EOAdaptor *_adaptor;
  EOAdaptorChannel *_channel;
  EOAdaptorContext *_context;
  Class _exprClass;
}
+ (EOModel *)defaultModel;
- (id) initWithModel:(EOModel *)model;
- (id) initWithModel:(EOModel *)model adaptorName:(NSString *)adaptorName;
- (id) initWithModel:(EOModel *)model
	adaptorName:(NSString*)adaptorName
	connectionDictionary:(NSDictionary *)connDict;

- (BOOL) isOpen;
- (void) open;
- (void) close;

- (void) recreateTables;
- (void) dropTables;
- (void) createTables;


- (EOAdaptor *)adaptor;
- (EOAdaptorChannel *)channel;
- (EOAdaptorContext *)context;
- (Class)exprClass;
- (EOModel *)model;
@end