diff options
author | stuconnolly <stuart02@gmail.com> | 2012-09-07 12:23:29 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-09-07 12:23:29 +0000 |
commit | c7817b4fcbb09d1909edb540c2626324a2cca5a4 (patch) | |
tree | 544eedb1e0c19eb3406f1df238a7b01265cdc33e /Frameworks/PostgresKit | |
parent | 27c66da71c4c4ddd9f987f9f01660a14c93b1a53 (diff) | |
download | sequelpro-c7817b4fcbb09d1909edb540c2626324a2cca5a4.tar.gz sequelpro-c7817b4fcbb09d1909edb540c2626324a2cca5a4.tar.bz2 sequelpro-c7817b4fcbb09d1909edb540c2626324a2cca5a4.zip |
Don't expose libpq types.
Diffstat (limited to 'Frameworks/PostgresKit')
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXPostgresResult.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Frameworks/PostgresKit/Source/FLXPostgresResult.h b/Frameworks/PostgresKit/Source/FLXPostgresResult.h index e198cee5..0e941a7a 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresResult.h +++ b/Frameworks/PostgresKit/Source/FLXPostgresResult.h @@ -20,7 +20,6 @@ // License for the specific language governing permissions and limitations under // the License. -#import "libpq-fe.h" #import "FLXConstants.h" @class FLXPostgresConnection; @@ -56,7 +55,7 @@ */ @property (readonly) NSStringEncoding stringEncoding; -- (id)initWithResult:(PGresult *)result connection:(FLXPostgresConnection *)connection; +- (id)initWithResult:(void *)result connection:(FLXPostgresConnection *)connection; - (unsigned int)numberOfFields; |