summaryrefslogtreecommitdiff
path: root/include/object
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2018-11-30 09:26:05 +0100
committerDaniel Friesel <derf@finalrewind.org>2018-11-30 09:26:05 +0100
commitfd34ebda2f2d2858b5f0fe96feae53ae6a2c268f (patch)
tree184b29f63403f0e062526d7e978d5907b92bb415 /include/object
parentd5636b932e111056e852316cdbe6a711a9643183 (diff)
XDR: Add float and double support
Diffstat (limited to 'include/object')
-rw-r--r--include/object/xdrinput.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/object/xdrinput.h b/include/object/xdrinput.h
index f869a13..7b8ac40 100644
--- a/include/object/xdrinput.h
+++ b/include/object/xdrinput.h
@@ -15,6 +15,8 @@ class XDRInput {
int32_t get_int32();
uint64_t get_uint64();
int64_t get_int64();
+ float get_float();
+ double get_double();
uint32_t get_opaque_length();
char* get_opaque(uint32_t length);
};