25 lines
399 B
C
25 lines
399 B
C
|
|
#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;
|
|||
|
|
virtual void load(const Pgsql::Result &res) override;
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
#endif // PGCLASSCONTAINER_H
|