summaryrefslogtreecommitdiff
path: root/src/mask.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mask.h')
-rw-r--r--src/mask.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/mask.h b/src/mask.h
index 62df9b63..18f1893d 100644
--- a/src/mask.h
+++ b/src/mask.h
@@ -51,11 +51,6 @@
namespace ledger {
-/**
- * @brief Brief
- *
- * Long.
- */
class mask_t
{
public:
@@ -151,6 +146,12 @@ inline std::ostream& operator<<(std::ostream& out, const mask_t& mask) {
return out;
}
+inline void to_xml(std::ostream& out, const mask_t& mask)
+{
+ push_xml x(out, "mask");
+ out << x.guard(mask.expr.str());
+}
+
} // namespace ledger
#endif // _MASK_H