Moved implementations from header to cpp.

This commit is contained in:
eelke 2018-09-19 08:25:58 +02:00
parent e4ccd93b09
commit 8d3bddfa1e
2 changed files with 42 additions and 30 deletions

View file

@ -13,3 +13,38 @@ QString LanguageConfig::getTypeName(Oid dbtype) const
{
return m_typeMappings->getTypeForOid(dbtype);
}
void LanguageConfig::setNameManglingRules(std::shared_ptr<const NameManglingRules> name_mangling_rules)
{
m_varNaming = name_mangling_rules;
}
std::shared_ptr<const TypeMappings> LanguageConfig::typeMappings() const
{
return m_typeMappings;
}
void LanguageConfig::setTypeMappings(std::shared_ptr<const TypeMappings> type_mappings)
{
m_typeMappings = type_mappings;
}
std::shared_ptr<const StructureTemplate> LanguageConfig::structureTemplate() const
{
return m_structureTemplate;
}
void LanguageConfig::setStructureTemplate(std::shared_ptr<const StructureTemplate> structure_template)
{
m_structureTemplate = structure_template;
}
std::shared_ptr<const IndentationConfig> LanguageConfig::indentationConfig() const
{
return m_indentationConfig;
}
void LanguageConfig::setIndentationConfig(std::shared_ptr<const IndentationConfig> indentation_config)
{
m_indentationConfig = indentation_config;
}