1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Docs: Update Doxygen configuration

This commit is contained in:
Tom Poole 2023-01-18 15:00:42 +00:00
parent c841b2ff2c
commit cb494df663
2 changed files with 521 additions and 240 deletions

File diff suppressed because it is too large Load diff

View file

@ -50,14 +50,14 @@ namespace juce
"goodbye" = "au revoir" "goodbye" = "au revoir"
@endcode @endcode
If the strings need to contain a quote character, they can use `\"` instead, and If the strings need to contain a quote character, they can use \" instead, and
if the first non-whitespace character on a line isn't a quote, then it's ignored, if the first non-whitespace character on a line isn't a quote, then it's ignored,
(you can use this to add comments). (you can use this to add comments).
Note that this is a singleton class, so don't create or destroy the object directly. Note that this is a singleton class, so don't create or destroy the object directly.
There's also a TRANS(text) macro defined to make it easy to use the this. There's also a TRANS(text) macro defined to make it easy to use the this.
E.g. @code @code
printSomething (TRANS("hello")); printSomething (TRANS("hello"));
@endcode @endcode