pgLab/pglablib/codebuilder/DefaultConfigs.h
eelke be0064f730 The codegen now can properly lookup array types.
Array type lookup failed previously because the typemapping class was
not yet receiving the list of types from the database. Fix was to pass
this data
2018-11-17 09:47:50 +01:00

12 lines
329 B
C++

#ifndef DEFAULTCONFIGS_H
#define DEFAULTCONFIGS_H
#include <memory>
class LanguageConfig;
class PgDatabaseCatalog;
//std::shared_ptr<const LanguageConfig> getDefaultCppLanguageConfig();
std::shared_ptr<const LanguageConfig> getPglabCppLanguageConfig(std::shared_ptr<PgDatabaseCatalog> catalog);
#endif // DEFAULTCONFIGS_H