Moved several files from pglab project to pglablib

This commit is contained in:
eelke 2017-12-29 10:21:10 +01:00
parent 206d734ff5
commit f4538069cb
44 changed files with 45 additions and 44 deletions

View file

@ -1,24 +0,0 @@
#ifndef PGCLASSCONTAINER_H
#define PGCLASSCONTAINER_H
#include "PgContainer.h"
#include "PgClass.h"
namespace Pgsql {
class Result;
}
class PgClassContainer: public PgContainer<PgClass> {
public:
using PgContainer<PgClass>::PgContainer;
virtual std::string getLoadQuery() const override;
protected:
PgClass loadElem(const Pgsql::Row &row) override;
private:
};
#endif // PGCLASSCONTAINER_H