diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-11-30 09:26:05 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-11-30 09:26:05 +0100 |
commit | fd34ebda2f2d2858b5f0fe96feae53ae6a2c268f (patch) | |
tree | 184b29f63403f0e062526d7e978d5907b92bb415 /include/object | |
parent | d5636b932e111056e852316cdbe6a711a9643183 (diff) |
XDR: Add float and double support
Diffstat (limited to 'include/object')
-rw-r--r-- | include/object/xdrinput.h | 2 |
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); }; |