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