Restructured locations of source.
This commit is contained in:
parent
78a4c6d730
commit
7c4e8e95e8
151 changed files with 1 additions and 0 deletions
26
src/pglab/PgDatabaseContainer.h
Normal file
26
src/pglab/PgDatabaseContainer.h
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#ifndef PGDATABASECONTAINER_H
|
||||
#define PGDATABASECONTAINER_H
|
||||
|
||||
#include <vector>
|
||||
#include "PgContainer.h"
|
||||
#include "PgDatabase.h"
|
||||
|
||||
namespace Pgsql {
|
||||
|
||||
class Result;
|
||||
|
||||
}
|
||||
|
||||
|
||||
class PgDatabaseContainer: public PgContainer<PgDatabase> {
|
||||
public:
|
||||
explicit PgDatabaseContainer(PgDatabaseCatalogue *cat);
|
||||
|
||||
std::string getLoadQuery() const;
|
||||
void load(const Pgsql::Result &res);
|
||||
|
||||
private:
|
||||
};
|
||||
|
||||
|
||||
#endif // PGDATABASECONTAINER_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue