diff options
author | John Wiegley <johnw@newartisans.com> | 2009-10-25 05:13:21 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-09 02:17:26 -0500 |
commit | 2c80227339538154ad0869e746f52db805325589 (patch) | |
tree | 091188e3ad5c8cc41e3f94285969ef9849a97ac4 /src/mask.h | |
parent | 7411c74d6d5bea42cb9fa5b6b0ed90480c954a03 (diff) | |
download | fork-ledger-2c80227339538154ad0869e746f52db805325589.tar.gz fork-ledger-2c80227339538154ad0869e746f52db805325589.tar.bz2 fork-ledger-2c80227339538154ad0869e746f52db805325589.zip |
Added basic foundation for XML reporting
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 |