Doxygen : sed script changes 'Typedef' -> @class (easier to find)

This commit is contained in:
Mark Olesen
2008-06-11 11:23:45 +02:00
parent 49cb54a0c4
commit 727d16e935

View File

@ -68,11 +68,11 @@ s/^ /@namespace /
# Typedef # Typedef
# Foam::def # Foam::def
# => # =>
# @typedef Foam::def # @class Foam::def
# # This is not strictly correct, but makes it easier to find the typedefs
/^Typedef *$/,/^[^ ]/{ /^Typedef *$/,/^[^ ]/{
/^Typedef/d /^Typedef/d
s/^ /@typedef / s/^ /@class /
} }