Restructured locations of source.

This commit is contained in:
Eelke Klein 2017-08-27 07:34:42 +02:00
parent 78a4c6d730
commit 7c4e8e95e8
151 changed files with 1 additions and 0 deletions

26
src/pglab/PgClass.h Normal file
View file

@ -0,0 +1,26 @@
#ifndef PGCLASS_H
#define PGCLASS_H
#include <QString>
#include <libpq-fe.h>
class PgClass {
public:
PgClass();
Oid oid = InvalidOid;
QString relname;
Oid relnamespace = InvalidOid;
Oid reltype = InvalidOid;
Oid reloftype = InvalidOid;
Oid relowner = InvalidOid;
Oid relam = InvalidOid;
Oid relfilename = InvalidOid;
Oid reltablespace = InvalidOid;
int relpages_est = 0;
float reltuples_est = 0;
int relallvisible = 0;
};
#endif // PGCLASS_H