pgLab/pglab/PgNamespace.h
Eelke Klein 04723a289b Switching to linux for development of pglab.
Switched from qmake to cmake. Code changes to make it compile.
2017-08-23 08:10:01 +02:00

17 lines
223 B
C++

#ifndef PGNAMESPACE_H
#define PGNAMESPACE_H
#include <QString>
#include <pgsql/libpq-fe.h>
class PgNamespace
{
public:
PgNamespace();
QString name;
Oid owner = InvalidOid;
QString acl;
};
#endif // PGNAMESPACE_H