pgLab/pglablib/PgDatabaseObject.h
eelke fcb191f2cc Overview of triggers extended with function name and arguments.
Did a lot of refactoring on the catalog to keep things clean.
2018-11-18 19:30:45 +01:00

13 lines
271 B
C++

#ifndef PGDATABASEOBJECT_H
#define PGDATABASEOBJECT_H
#include "PgServerObject.h"
/// Base class for objects that are part of a database
class PgDatabaseObject: public PgServerObject {
public:
using PgServerObject::PgServerObject;
};
#endif // PGDATABASEOBJECT_H