summaryrefslogtreecommitdiffstats
path: root/translate.h
diff options
context:
space:
mode:
Diffstat (limited to 'translate.h')
-rw-r--r--translate.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/translate.h b/translate.h
index eae7534f..fde8af9f 100644
--- a/translate.h
+++ b/translate.h
@@ -34,6 +34,9 @@ public:
std::ostream& newline (int indent = 0);
void indent (int indent = 0);
std::ostream& line();
+
+ std::ostream::pos_type tellp() { return o.tellp(); }
+ std::ostream& seekp(std::ostream::pos_type p) { return o.seekp(p); }
};