Moved several files from pglab project to pglablib
This commit is contained in:
parent
206d734ff5
commit
f4538069cb
44 changed files with 45 additions and 44 deletions
25
pglablib/PgAuthIdContainer.h
Normal file
25
pglablib/PgAuthIdContainer.h
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#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;
|
||||
|
||||
virtual std::string getLoadQuery() const override;
|
||||
virtual void load(const Pgsql::Result &res) override;
|
||||
private:
|
||||
};
|
||||
|
||||
|
||||
#endif // PGAUTHIDCONTAINER_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue