#ifndef PGNAMESPACE_H #define PGNAMESPACE_H #include "PgDatabaseObject.h" #include #include /// Object representing a namespace within a database class PgNamespace: public PgDatabaseObject { public: Oid owner = InvalidOid; QString acl; using PgDatabaseObject::PgDatabaseObject; bool isSystemCatalog() const; QString typeName() const override; }; #endif // PGNAMESPACE_H