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
12 lines
329 B
C++
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
|