#ifndef PGTRIGGERCONTAINER_H #define PGTRIGGERCONTAINER_H #include "PgContainer.h" #include "PgTrigger.h" #include namespace Pgsql { class Result; } class PgTriggerContainer: public PgContainer { public: using PgContainer::PgContainer; virtual std::string getLoadQuery() const override; std::vector getTriggersForRelation(Oid cls) const; protected: PgTrigger loadElem(const Pgsql::Row &row) override; private: }; #endif // PGTRIGGERCONTAINER_H