summaryrefslogtreecommitdiffstats
path: root/src/template.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-03-16 17:45:04 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-03-23 11:09:10 (GMT)
commit12cd22f4c32ed8b92da7b5a03181aa6735018a5b (patch)
tree6e6e276673eef38e37e2eea24014797153a676c7 /src/template.h
parent3598e8fdf7ee61a281480fec09f63669710ac35d (diff)
downloadDoxygen-12cd22f4c32ed8b92da7b5a03181aa6735018a5b.zip
Doxygen-12cd22f4c32ed8b92da7b5a03181aa6735018a5b.tar.gz
Doxygen-12cd22f4c32ed8b92da7b5a03181aa6735018a5b.tar.bz2
Add index support to context
Diffstat (limited to 'src/template.h')
-rw-r--r--src/template.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/template.h b/src/template.h
index c227530..cb4a96f 100644
--- a/src/template.h
+++ b/src/template.h
@@ -191,12 +191,12 @@ class TemplateVariant
/** Returns the pointer to list referenced by this variant
* or 0 if this variant does not have list type.
*/
- const TemplateListIntf *toList() const;
+ TemplateListIntf *toList() const;
/** Returns the pointer to struct referenced by this variant
* or 0 if this variant does not have struct type.
*/
- const TemplateStructIntf *toStruct() const;
+ TemplateStructIntf *toStruct() const;
/** Return the result of apply this function with \a args.
* Returns an empty string if the variant type is not a function.
@@ -399,7 +399,7 @@ class TemplateSpacelessIntf
* A key is searched starting with the dictionary at the top of the stack
* and searching downwards until it is found. The stack is used to create
* local scopes.
- * @note This object must be created by TemplateEngine
+ * @note This object must be created by TemplateEngine::createContext()
*/
class TemplateContext
{