aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/PostgresKit/Source/FLXPostgresTypeStringHandler.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2012-09-12 12:19:31 +0000
committerstuconnolly <stuart02@gmail.com>2012-09-12 12:19:31 +0000
commit8b298de8d7ef2c680974b5c5cebb4b0056969984 (patch)
tree6e6721b2e6c5628743e953047549d5b9e909ffa8 /Frameworks/PostgresKit/Source/FLXPostgresTypeStringHandler.h
parent4bac2aa3a2feb2c7eda3064e070cac005e7fa256 (diff)
downloadsequelpro-8b298de8d7ef2c680974b5c5cebb4b0056969984.tar.gz
sequelpro-8b298de8d7ef2c680974b5c5cebb4b0056969984.tar.bz2
sequelpro-8b298de8d7ef2c680974b5c5cebb4b0056969984.zip
Fix release build warnings.
Diffstat (limited to 'Frameworks/PostgresKit/Source/FLXPostgresTypeStringHandler.h')
-rw-r--r--Frameworks/PostgresKit/Source/FLXPostgresTypeStringHandler.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/Frameworks/PostgresKit/Source/FLXPostgresTypeStringHandler.h b/Frameworks/PostgresKit/Source/FLXPostgresTypeStringHandler.h
index 43a70cfe..27b1c8c2 100644
--- a/Frameworks/PostgresKit/Source/FLXPostgresTypeStringHandler.h
+++ b/Frameworks/PostgresKit/Source/FLXPostgresTypeStringHandler.h
@@ -23,6 +23,22 @@
#import "FLXPostgresTypeHandler.h"
@interface FLXPostgresTypeStringHandler : FLXPostgresTypeHandler <FLXPostgresTypeHandlerProtocol>
+{
+ NSUInteger _row;
+ NSUInteger _column;
+
+ const PGresult *_result;
+
+ FLXPostgresOid _type;
+}
+
+@property (readwrite, assign) NSUInteger row;
+
+@property (readwrite, assign) NSUInteger column;
+
+@property (readwrite, assign) FLXPostgresOid type;
+
+@property (readwrite, assign) const PGresult *result;
@end