Skip to content

Commit

Permalink
bin/tools/doxyFilter.sed: Add support for 2-line Class name:
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry authored and Henry committed Jan 29, 2015
1 parent 8a25a1d commit ddb78f9
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions bin/tools/doxyFilter.sed
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,19 @@ s/^ /\\relates /
# =>
# \\class Foam::className
#
# Class
# Foam::namespaceName::
# className
# =>
# \\class Foam::namespaceName::className
#
/^Class *$/,/^[^ ]/{
s/^Class *$//
s/^ /\\class /
N
/.*:: *$/{
N
s/Class *\n *\(.*\) *\n *\(.*\) */\\class \1\2/
}
s/Class *\n *\(.*\) */\\class \1/
}


Expand Down

0 comments on commit ddb78f9

Please sign in to comment.