diff options
Diffstat (limited to 'src/mask.h')
-rw-r--r-- | src/mask.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -146,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 |