Add ObjPgSQL.h.
FossilOrigin-Name: 9b7427552b063b5db36fdc636befa1e018afc3fb9622e8bfce6888ae5aa5d72e
This commit is contained in:
parent
ea146aea92
commit
f640a29849
4 changed files with 11 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,5 @@
|
|||
build
|
||||
test
|
||||
*.dll
|
||||
*.dylib
|
||||
*.so
|
||||
|
|
4
Makefile
4
Makefile
|
@ -8,7 +8,9 @@ SRCS = PGConnection.m \
|
|||
exceptions/PGCommandFailedException.m \
|
||||
exceptions/PGConnectionFailedException.m \
|
||||
exceptions/PGException.m
|
||||
HEADERS = ${SRCS:.m=.h}
|
||||
|
||||
HEADERS = ${SRCS:.m=.h} \
|
||||
ObjPgSQL.h
|
||||
|
||||
CPPFLAGS += -Wall -Iexceptions -I.
|
||||
LIBS += -lpq
|
||||
|
|
6
ObjPgSQL.h
Normal file
6
ObjPgSQL.h
Normal file
|
@ -0,0 +1,6 @@
|
|||
#import "PGConnection.h"
|
||||
#import "PGResult.h"
|
||||
#import "PGResultRow.h"
|
||||
#import "exceptions/PGCommandFailedException.h"
|
||||
#import "exceptions/PGConnectionFailedException.h"
|
||||
#import "exceptions/PGException.h"
|
|
@ -1,6 +1,6 @@
|
|||
#import <ObjFW/ObjFW.h>
|
||||
|
||||
#import "PGConnection.h"
|
||||
#import "../PGConnection.h"
|
||||
|
||||
@interface PGException: OFException
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue