27 lines
407 B
C
27 lines
407 B
C
|
|
#ifndef PGAUTHIDCONTAINER_H
|
|||
|
|
#define PGAUTHIDCONTAINER_H
|
|||
|
|
|
|||
|
|
#include <vector>
|
|||
|
|
#include "PgContainer.h"
|
|||
|
|
#include "PgAuthId.h"
|
|||
|
|
|
|||
|
|
namespace Pgsql {
|
|||
|
|
|
|||
|
|
class Result;
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
class PgAuthIdContainer: public PgContainer<PgAuthId> {
|
|||
|
|
public:
|
|||
|
|
explicit PgAuthIdContainer(PgsqlDatabaseCatalogue *cat);
|
|||
|
|
|
|||
|
|
std::string getLoadQuery() const;
|
|||
|
|
void load(const Pgsql::Result &res);
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
|
|||
|
|
#endif // PGAUTHIDCONTAINER_H
|