summaryrefslogtreecommitdiff
path: root/include/object
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2018-12-05 08:23:06 +0100
committerDaniel Friesel <derf@finalrewind.org>2018-12-05 08:23:06 +0100
commitbb1c35235b71079b20f469421a895b038bcfa0db (patch)
tree73e75e99815dbf97c9f4aafec89633d2767d7217 /include/object
parent7a0173db5f0acf0848ccc0589f64f08f44782337 (diff)
XDR: Add proper get_string method
Diffstat (limited to 'include/object')
-rw-r--r--include/object/xdrinput.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/object/xdrinput.h b/include/object/xdrinput.h
index 7b8ac40..5f99169 100644
--- a/include/object/xdrinput.h
+++ b/include/object/xdrinput.h
@@ -19,6 +19,7 @@ class XDRInput {
double get_double();
uint32_t get_opaque_length();
char* get_opaque(uint32_t length);
+ void get_string(char *target);
};
#endif