pgLab/pglab/PgAuthIdContainer.h

26 lines
391 B
C
Raw Normal View History

#ifndef PGAUTHIDCONTAINER_H
#define PGAUTHIDCONTAINER_H
#include <vector>
#include "PgContainer.h"
#include "PgAuthId.h"
namespace Pgsql {
class Result;
}
class PgAuthIdContainer: public PgContainer<PgAuthId> {
public:
using PgContainer<PgAuthId>::PgContainer;
std::string getLoadQuery() const;
void load(const Pgsql::Result &res);
private:
};
#endif // PGAUTHIDCONTAINER_H