ObjPgSQL/PGResultRow.h
Jonathan Schleifer f2886c2111 Add Xcode project.
FossilOrigin-Name: cf2fe185976eb9af8c8437fb68da475cdf47944bef02a89114dc3ea285b97552
2012-10-05 21:19:22 +00:00

18 lines
274 B
Objective-C

#include <libpq-fe.h>
#import <ObjFW/ObjFW.h>
#import "PGResult.h"
@interface PGResultRow: OFDictionary
{
PGResult *result;
PGresult *res;
int row;
}
+ rowWithResult: (PGResult*)result
row: (int)row;
- initWithResult: (PGResult*)result
row: (int)row;
@end