Skip to content

Commit

Permalink
add extra information about class for Sealed and Final
Browse files Browse the repository at this point in the history
besides just only abstract class, extract also if a class is sealed or
final
  • Loading branch information
Joenio Marques da Costa committed Nov 24, 2023
1 parent 8c18970 commit e8ee44e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions addon/doxyparse/doxyparse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,12 @@ static void classInformation(const ClassDef* cd) {
if(cd->isAbstract()) {
printClassInformation("abstract class");
}
else if(cd->isSealed()) {
printClassInformation("sealed class");
}
else if(cd->isFinal()) {
printClassInformation("final class");
}
printDefines();
listAllMembers(cd);
}
Expand Down

0 comments on commit e8ee44e

Please sign in to comment.