summaryrefslogtreecommitdiff
path: root/src/expr/expr_template.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-10-31 15:26:19 +0000
committerMorgan Deters <mdeters@gmail.com>2010-10-31 15:26:19 +0000
commit39031822cf3f9faab7b5b9e6cbce46a5194503b1 (patch)
tree7f95265819554a20a2ef4637a4a8a6a83a7cfc0b /src/expr/expr_template.h
parentd4bfaa103d56d5c0172bf1457343a75ddea8a9b5 (diff)
enable dependence graphs in doxygen; fix lots of doxygen warnings, fix some documentation, and make it possible to "make doc" on a clean source tree (post-configure)
Diffstat (limited to 'src/expr/expr_template.h')
-rw-r--r--src/expr/expr_template.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/expr/expr_template.h b/src/expr/expr_template.h
index 2eac4ab62..be089bca8 100644
--- a/src/expr/expr_template.h
+++ b/src/expr/expr_template.h
@@ -309,10 +309,17 @@ public:
/**
* Outputs the string representation of the expression to the stream.
- * @param out the output stream
- */
- void toStream(std::ostream& out, int depth = -1, bool types = false,
- OutputLanguage lang = language::output::LANG_AST) const;
+ *
+ * @param out the stream to serialize this expression to
+ * @param toDepth the depth to which to print this expression, or -1
+ * to print it fully
+ * @param types set to true to ascribe types to the output
+ * expressions (might break language compliance, but good for
+ * debugging expressions)
+ * @param language the language in which to output
+ */
+ void toStream(std::ostream& out, int toDepth = -1, bool types = false,
+ OutputLanguage language = language::output::LANG_AST) const;
/**
* Check if this is a null expression.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback