summaryrefslogtreecommitdiff
path: root/src/main/Printable.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/Printable.h')
-rw-r--r--src/main/Printable.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/Printable.h b/src/main/Printable.h
index c14aec8..6d2129f 100644
--- a/src/main/Printable.h
+++ b/src/main/Printable.h
@@ -8,6 +8,7 @@
#ifndef PRINTABLE_H_
#define PRINTABLE_H_
+#include <sstream>
#include <string>
namespace vhc {
@@ -22,6 +23,8 @@ public:
/** Retourne une représentation en chaîne de caractères de cet objet imprimable. */
virtual std::string toString() const = 0;
+ //virtual std::stringstream toStream(std::stringstream s) const = 0;
+
};
/** Ajoute la représentation en chaîne de <code>p</code> à <code>output</code>. */