diff options
Diffstat (limited to 'src/entry.h')
-rw-r--r-- | src/entry.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/entry.h b/src/entry.h index 7717eb9..476fea5 100644 --- a/src/entry.h +++ b/src/entry.h @@ -252,8 +252,9 @@ class Entry QCString args; //!< member argument string QCString bitfields; //!< member's bit fields ArgumentList *argList; //!< member arguments as a list - ArgumentList *tArgList; //!< template argument list - ArgumentList *mtArgList; //!< member template argument list + QList<ArgumentList> *tArgLists; //!< template argument declarations + //ArgumentList *tArgList; //!< template argument lists (for each scope) + //ArgumentList *mtArgList; //!< member template argument list QCString scopeSpec; //!< template specialization of the scope QCString memberSpec; //!< template specialization of the member QCString program; //!< the program text |