functionObjects: Moved functionObjects namespace documentation into functionObject.H

This commit is contained in:
Henry Weller
2016-05-04 13:56:36 +01:00
parent f6c670dcac
commit 891b2a0f8b
9 changed files with 94 additions and 130 deletions

View File

@ -52,16 +52,15 @@ BEGIN {
next
}
/^ *\/\// {
# start comment block
# Start comment block
if (state == 1)
{
printf "/*! "
state = 2
}
# inside comment block
# Inside comment block
if (state == 2)
{
if (!sub(/^ *\/\/ /, ""))
@ -74,9 +73,8 @@ BEGIN {
next
}
{
# end comment block
# End comment block
if (state == 2)
{
printf "*/ "