]> Dogcows Code - chaz/thecheat/blob - SearchResults.h
The Cheat 1.0b4
[chaz/thecheat] / SearchResults.h
1
2 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3 // Project: The Cheat
4 //
5 // File: SearchResults.h
6 // Created: Sat Oct 04 2003
7 //
8 // Copyright: 2003 Chaz McGarvey. All rights reserved.
9 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10
11 #import <Cocoa/Cocoa.h>
12
13 #include "cheat_types.h"
14
15
16 @interface SearchResults : NSObject
17 {
18 TCtype myType;
19 TCsize mySize;
20
21 TCaddress *myData;
22 int myAmount;
23 }
24
25 + (id)resultsWithType:(TCtype)type size:(TCsize)size data:(TCaddress const *)data amount:(int)amount;
26 - (id)initWithType:(TCtype)type size:(TCsize)size data:(TCaddress const *)data amount:(int)amount;
27
28 - (TCtype)type;
29 - (TCsize)size;
30 - (TCaddress *)data;
31 - (int)amount;
32
33 @end
This page took 0.034138 seconds and 4 git commands to generate.