summaryrefslogtreecommitdiff
path: root/value.h
diff options
context:
space:
mode:
Diffstat (limited to 'value.h')
-rw-r--r--value.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/value.h b/value.h
index aac48f6f..892be37c 100644
--- a/value.h
+++ b/value.h
@@ -837,6 +837,15 @@ public:
void print(std::ostream& out, const bool relaxed = true) const;
/**
+ * Serialization methods. An amount may be deserialized from an
+ * input stream or a character pointer, and it may be serialized to
+ * an output stream. The methods used are:
+ */
+
+ void read(const char *& data);
+ void write(std::ostream& out) const;
+
+ /**
* Debugging methods.
*/