]> git.lyx.org Git - features.git/commitdiff
add missing header
authorAndré Pönitz <poenitz@gmx.net>
Sun, 12 Aug 2007 10:50:49 +0000 (10:50 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Sun, 12 Aug 2007 10:50:49 +0000 (10:50 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19447 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/LaTeXStream.h [new file with mode: 0644]

diff --git a/src/support/LaTeXStream.h b/src/support/LaTeXStream.h
new file mode 100644 (file)
index 0000000..bdd32fc
--- /dev/null
@@ -0,0 +1,23 @@
+#ifndef LATEXSTREAM_H
+#define LATEXSTREAM_H
+
+#include <iostream>
+#include <streambuf>
+
+namespace lyx {
+
+class LaTeXStreamBuffer;
+
+class LaTeXStream : public std::ostream
+{
+public:
+  LaTeXStream(std::streambuf * sbuf);
+  ~LaTeXStream();
+       int line() const;
+private:
+       LaTeXStreamBuffer * sbuf_;
+};
+
+} // namespace lyx
+
+#endif