summaryrefslogtreecommitdiff
path: root/libpqpp/pq-selectbase.h
blob: 217a9e76c4e5a99e3f977936c1200af6c3a8058b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef PQ_SELECTBASE_H
#define PQ_SELECTBASE_H

#include <libpq-fe.h>

namespace PQ {
	class SelectBase {
		friend class Column;

		protected:
			SelectBase();
			~SelectBase() = default;

			int nTuples, tuple;
			PGresult * execRes;
	};
}

#endif