java input stream adapters working
[cvc5.git] / src / parser / antlr_line_buffered_input.h
index 83df19a2dd59c13266a774fac683caabfeec7006..fb0c16dbe7de74d2689d4ebc58b7e1d909909ecc 100644 (file)
 namespace CVC4 {
 namespace parser {
 
+typedef struct ANTLR3_LINE_BUFFERED_INPUT_STREAM {
+  ANTLR3_INPUT_STREAM antlr;
+  std::istream* in;
+} *pANTLR3_LINE_BUFFERED_INPUT_STREAM;
+
 pANTLR3_INPUT_STREAM
 antlr3LineBufferedStreamNew(std::istream& in, ANTLR3_UINT32 encoding, pANTLR3_UINT8 name);