summaryrefslogtreecommitdiff
path: root/number.cpp
diff options
context:
space:
mode:
authorOlivier Gayot <og@satcom1.com>2017-11-18 13:43:31 +0100
committerOlivier Gayot <og@satcom1.com>2017-11-19 14:01:08 +0100
commitc029a456f410ef45f4803bc7e209fbab81b3c42a (patch)
treef2c56e8ec679d9a2dbde7d7aca7849de1745deb1 /number.cpp
parentacab244a6342be7597d0f2d22dc90a43f425fbb8 (diff)
Allow a number to be used in an ostream object
When a number is streamed into a ostream object, the hexadecimal representation of the number is given to the stream. Signed-off-by: Olivier Gayot <og@satcom1.com>
Diffstat (limited to 'number.cpp')
-rw-r--r--number.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/number.cpp b/number.cpp
index 26b0ed2..acd60fd 100644
--- a/number.cpp
+++ b/number.cpp
@@ -145,3 +145,9 @@ number::operator!=(const number &n) const
}
/* }}} */
+
+std::ostream &
+operator<<(std::ostream &os, const number &n)
+{
+ return os << n.to_hex_string();
+}