diff options
Diffstat (limited to 'src/docparser.cpp')
-rw-r--r-- | src/docparser.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/docparser.cpp b/src/docparser.cpp index 0b9cb3c..2e97277 100644 --- a/src/docparser.cpp +++ b/src/docparser.cpp @@ -3582,6 +3582,31 @@ void DocSimpleSect::appendLinkWord(const QString &word) g_inSeeBlock=FALSE; } +QCString DocSimpleSect::typeString() const +{ + switch (m_type) + { + case Unknown: break; + case See: return "see"; + case Return: return "return"; + case Author: // fall through + case Authors: return "author"; + case Version: return "version"; + case Since: return "since"; + case Date: return "date"; + case Note: return "note"; + case Warning: return "warning"; + case Pre: return "pre"; + case Post: return "post"; + case Invar: return "invariant"; + case Remark: return "remark"; + case Attention: return "attention"; + case User: return "user"; + case Rcs: return "rcs"; + } + return "unknown"; +} + //-------------------------------------------------------------------------- int DocParamList::parse(const QString &cmdName) |