diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-09-24 15:30:18 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-09-24 15:30:18 +0200 |
commit | cf31570dffa4ebfbb5544f5a5ccdcbae559fb524 (patch) | |
tree | 66ad080c1158cc58663f29330685056a092c5b4f /include/object | |
parent | 276b9a93c2e3b9ac58a9ddb5fff4c8299c459222 (diff) |
outputstream: Add << for float and double
Diffstat (limited to 'include/object')
-rw-r--r-- | include/object/outputstream.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/object/outputstream.h b/include/object/outputstream.h index 4a37977..70ebece 100644 --- a/include/object/outputstream.h +++ b/include/object/outputstream.h @@ -35,6 +35,8 @@ class OutputStream { OutputStream & operator<<(long long number); OutputStream & operator<<(void *pointer); OutputStream & operator<<(const char *text); + OutputStream & operator<<(float number); + OutputStream & operator<<(double number); OutputStream & operator<<(OutputStream & (*fun) (OutputStream &)); void setBase(uint8_t b); |