pgLab/pgsqldatabasecatalogue.h
Eelke Klein 424cbc9e2e Started with classes for keeping track of the database schema.
Class to represent the contents of pg_type catalog table.
2017-01-25 06:53:30 +01:00

16 lines
255 B
C++

#ifndef PGSQLDATABASECATALOGUE_H
#define PGSQLDATABASECATALOGUE_H
#include <vector>
class PgTypeContainer;
class PgsqlDatabaseCatalogue {
public:
PgsqlDatabaseCatalogue();
private:
PgTypeContainer *m_types;
};
#endif // PGSQLDATABASECATALOGUE_H