1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-03 00:35:40 +00:00
This commit is contained in:
Lu Wang 2013-01-19 19:19:15 +08:00
parent 4eed570ee8
commit e81b0e7456
2 changed files with 8 additions and 0 deletions

View File

@ -379,6 +379,7 @@ class HTMLRenderer : public OutputDev
double draw_tx, draw_ty;
// some metrics have to be determined after all elements in the lines have been seen
// see TextLineBuffer.h
class TextLineBuffer;
friend class TextLineBuffer;
TextLineBuffer * text_line_buf;

View File

@ -6,6 +6,13 @@
namespace pdf2htmlEX {
/*
* Store a series of
* - Text
* - Shift
* - State change
* within a line
*/
class HTMLRenderer;
class HTMLRenderer::TextLineBuffer
{