2017-08-26 11:44:40 +02:00
|
|
|
#ifndef PGAUTHIDCONTAINER_H
|
2017-02-18 12:05:48 +01:00
|
|
|
#define PGAUTHIDCONTAINER_H
|
|
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
#include "PgContainer.h"
|
|
|
|
|
#include "PgAuthId.h"
|
|
|
|
|
|
|
|
|
|
namespace Pgsql {
|
|
|
|
|
|
|
|
|
|
class Result;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class PgAuthIdContainer: public PgContainer<PgAuthId> {
|
|
|
|
|
public:
|
2017-08-26 11:44:40 +02:00
|
|
|
explicit PgAuthIdContainer(PgDatabaseCatalogue *cat);
|
2017-02-18 12:05:48 +01:00
|
|
|
|
|
|
|
|
std::string getLoadQuery() const;
|
|
|
|
|
void load(const Pgsql::Result &res);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // PGAUTHIDCONTAINER_H
|