]> Dogcows Code - chaz/thecheat/blobdiff - SearchResults.h
The Cheat 1.0b3
[chaz/thecheat] / SearchResults.h
diff --git a/SearchResults.h b/SearchResults.h
new file mode 100644 (file)
index 0000000..364470a
--- /dev/null
@@ -0,0 +1,33 @@
+
+// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+// Project:   The Cheat
+//
+// File:      SearchResults.h
+// Created:   Sat Oct 04 2003
+//
+// Copyright: 2003 Chaz McGarvey.  All rights reserved.
+// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+#import <Cocoa/Cocoa.h>
+
+#include "cheat_types.h"
+
+
+@interface SearchResults : NSObject
+{
+       TCtype                  myType;
+       TCsize                  mySize;
+       
+       TCaddress               *myData;
+       int                             myAmount;
+}
+
++ (id)resultsWithType:(TCtype)type size:(TCsize)size data:(TCaddress const *)data amount:(int)amount;
+- (id)initWithType:(TCtype)type size:(TCsize)size data:(TCaddress const *)data amount:(int)amount;
+
+- (TCtype)type;
+- (TCsize)size;
+- (TCaddress *)data;
+- (int)amount;
+
+@end
\ No newline at end of file
This page took 0.022993 seconds and 4 git commands to generate.