Started with classes for keeping track of the database schema.

Class to represent the contents of pg_type catalog table.
This commit is contained in:
Eelke Klein 2017-01-25 06:52:02 +01:00
parent 202e6e431a
commit 424cbc9e2e
6 changed files with 192 additions and 0 deletions

16
pgsqldatabasecatalogue.h Normal file
View file

@ -0,0 +1,16 @@
#ifndef PGSQLDATABASECATALOGUE_H
#define PGSQLDATABASECATALOGUE_H
#include <vector>
class PgTypeContainer;
class PgsqlDatabaseCatalogue {
public:
PgsqlDatabaseCatalogue();
private:
PgTypeContainer *m_types;
};
#endif // PGSQLDATABASECATALOGUE_H