summaryrefslogtreecommitdiffstats
path: root/translate.h
diff options
context:
space:
mode:
Diffstat (limited to 'translate.h')
-rw-r--r--translate.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/translate.h b/translate.h
index 39e56dd7..1c6dc9f6 100644
--- a/translate.h
+++ b/translate.h
@@ -21,13 +21,14 @@
// pretty-printing.
class translator_output
{
+ char *buf;
std::ofstream* o2;
std::ostream& o;
unsigned tablevel;
public:
translator_output (std::ostream& file);
- translator_output (const std::string& filename);
+ translator_output (const std::string& filename, size_t bufsize = 8192);
~translator_output ();
std::ostream& newline (int indent = 0);