summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/object/outputstream.h2
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);