26 lines
401 B
C++
26 lines
401 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(PgDatabaseCatalogue *cat);
|
|
|
|
std::string getLoadQuery() const;
|
|
void load(const Pgsql::Result &res);
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
#endif // PGAUTHIDCONTAINER_H
|