aboutsummaryrefslogtreecommitdiffstats
path: root/trunk/SPTableInfo.h
diff options
context:
space:
mode:
authorabhibeckert <abhi@abhibeckert.com>2008-09-29 09:49:36 +0000
committerabhibeckert <abhi@abhibeckert.com>2008-09-29 09:49:36 +0000
commit8b39f25ee75d7db1eff68aaa71b92d3282e4c054 (patch)
tree75e5fd2f66210a5d7170f92c40903fe9fe1c5b57 /trunk/SPTableInfo.h
parentc0e7a42a5deba6b1529db959411a416ab114edba (diff)
downloadsequelpro-8b39f25ee75d7db1eff68aaa71b92d3282e4c054.tar.gz
sequelpro-8b39f25ee75d7db1eff68aaa71b92d3282e4c054.tar.bz2
sequelpro-8b39f25ee75d7db1eff68aaa71b92d3282e4c054.zip
tag release candidate 2 of 0.9.2 releaserelease-0.9.2
Diffstat (limited to 'trunk/SPTableInfo.h')
-rw-r--r--trunk/SPTableInfo.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/trunk/SPTableInfo.h b/trunk/SPTableInfo.h
new file mode 100644
index 00000000..49e62d28
--- /dev/null
+++ b/trunk/SPTableInfo.h
@@ -0,0 +1,24 @@
+//
+// SPTableInfo.h
+// sequel-pro
+//
+// Created by Ben Perry on 6/05/08.
+// Copyright 2008 Ben Perry. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+
+
+@interface SPTableInfo : NSObject {
+ IBOutlet id infoTable;
+
+ IBOutlet id tableListInstance;
+ IBOutlet id tableDocumentInstance;
+
+ NSMutableArray *info;
+}
+
+- (NSString *)sizeFromBytes:(int)bytes;
+
+
+@end