mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
add missing header
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19447 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
2caa98bee0
commit
333103801b
23
src/support/LaTeXStream.h
Normal file
23
src/support/LaTeXStream.h
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user