summaryrefslogtreecommitdiffstats
path: root/src/translator_en.h
diff options
context:
space:
mode:
authorpowARman <andreas.regel@gmx.de>2020-08-03 18:02:45 (GMT)
committerGitHub <noreply@github.com>2020-08-03 18:02:45 (GMT)
commit5e293b201f46bd98695bcc92ce2ecaa1f2b15c54 (patch)
tree80e41cf29284faf03b0ce9aa9de16f9a3e7a6ad3 /src/translator_en.h
parent97b6582daef5028fd3077a7fc29bd94b393f7ae1 (diff)
downloadDoxygen-5e293b201f46bd98695bcc92ce2ecaa1f2b15c54.zip
Doxygen-5e293b201f46bd98695bcc92ce2ecaa1f2b15c54.tar.gz
Doxygen-5e293b201f46bd98695bcc92ce2ecaa1f2b15c54.tar.bz2
Vhdl improvements (ALIAS, translation) (#7813)
* Support VHDL alias constructs. * Translate class to "Design Unit" for VHDL. * Fix compile error * Add new function trDesignUnitDocumentation() to translator. Adapt english and german translation to use the new function. Co-authored-by: Andreas Regel <andreas.regel@newayselectronics.com>
Diffstat (limited to 'src/translator_en.h')
-rw-r--r--src/translator_en.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/translator_en.h b/src/translator_en.h
index a5be968..8666c10 100644
--- a/src/translator_en.h
+++ b/src/translator_en.h
@@ -394,6 +394,10 @@ class TranslatorEnglish : public Translator
{
return "Data Structure Documentation";
}
+ else if (Config_getBool(OPTIMIZE_OUTPUT_VHDL))
+ {
+ return trDesignUnitDocumentation();
+ }
else
{
return "Class Documentation";
@@ -2246,6 +2250,14 @@ class TranslatorEnglish : public Translator
}
//////////////////////////////////////////////////////////////////////////
+// new since 1.8.19
+//////////////////////////////////////////////////////////////////////////
+
+ /** VHDL design unit documentation */
+ virtual QCString trDesignUnitDocumentation()
+ { return "Design Unit Documentation"; }
+
+//////////////////////////////////////////////////////////////////////////
};