pgLab/pglablib/PgNamespaceContainer.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

24 lines
445 B
C++

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