aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPTableInfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/SPTableInfo.h')
-rw-r--r--Source/SPTableInfo.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/Source/SPTableInfo.h b/Source/SPTableInfo.h
new file mode 100644
index 00000000..0613794c
--- /dev/null
+++ b/Source/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 tableList;
+ IBOutlet id tableListInstance;
+ IBOutlet id tableDocumentInstance;
+
+ NSMutableArray *info;
+}
+
+- (NSString *)sizeFromBytes:(int)bytes;
+
+
+@end