More case fixes of filenames.
This commit is contained in:
parent
20af12535e
commit
e71ef2e6df
41 changed files with 258 additions and 123 deletions
|
|
@ -1,35 +0,0 @@
|
|||
#ifndef PGSQLDATABASECATALOGUE_H
|
||||
#define PGSQLDATABASECATALOGUE_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
namespace Pgsql {
|
||||
|
||||
class Connection;
|
||||
|
||||
}
|
||||
|
||||
class PgTypeContainer;
|
||||
class PgDatabaseContainer;
|
||||
|
||||
class PgsqlDatabaseCatalogue {
|
||||
public:
|
||||
PgsqlDatabaseCatalogue();
|
||||
PgsqlDatabaseCatalogue(const PgsqlDatabaseCatalogue&) = delete;
|
||||
PgsqlDatabaseCatalogue& operator = (const PgsqlDatabaseCatalogue&) = delete;
|
||||
|
||||
~PgsqlDatabaseCatalogue();
|
||||
|
||||
|
||||
void loadAll(Pgsql::Connection &conn);
|
||||
void loadTypes(Pgsql::Connection &conn);
|
||||
void loadDatabases(Pgsql::Connection &conn);
|
||||
|
||||
const PgTypeContainer* types() const { return m_types; }
|
||||
const PgDatabaseContainer *databases() const { return m_databases; }
|
||||
private:
|
||||
PgTypeContainer *m_types = nullptr;
|
||||
PgDatabaseContainer *m_databases = nullptr;
|
||||
};
|
||||
|
||||
#endif // PGSQLDATABASECATALOGUE_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue