From: André Pönitz Date: Sun, 12 Aug 2007 10:50:49 +0000 (+0000) Subject: add missing header X-Git-Tag: 1.6.10~8952 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=333103801ba68dc14e5b269207059694a8a290fb;p=features.git add missing header git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19447 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/support/LaTeXStream.h b/src/support/LaTeXStream.h new file mode 100644 index 0000000000..bdd32fc877 --- /dev/null +++ b/src/support/LaTeXStream.h @@ -0,0 +1,23 @@ +#ifndef LATEXSTREAM_H +#define LATEXSTREAM_H + +#include +#include + +namespace lyx { + +class LaTeXStreamBuffer; + +class LaTeXStream : public std::ostream +{ +public: + LaTeXStream(std::streambuf * sbuf); + ~LaTeXStream(); + int line() const; +private: + LaTeXStreamBuffer * sbuf_; +}; + +} // namespace lyx + +#endif