Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 113896
Collapse All | Expand All

(-)src/lib/WP3FixedLengthGroup.h.old (-2 / +2 lines)
Lines 30-37 Link Here
30
class WP3FixedLengthGroup : public WP3Part
30
class WP3FixedLengthGroup : public WP3Part
31
{
31
{
32
 public:
32
 public:
33
	WP3FixedLengthGroup::WP3FixedLengthGroup(int groupID);
33
	WP3FixedLengthGroup(int groupID);
34
	static WP3FixedLengthGroup * WP3FixedLengthGroup::constructFixedLengthGroup(WPXInputStream *input, uint8_t groupID);
34
	static WP3FixedLengthGroup * constructFixedLengthGroup(WPXInputStream *input, uint8_t groupID);
35
35
36
	const uint8_t getGroup() const { return m_group; } 
36
	const uint8_t getGroup() const { return m_group; } 
37
 
37
 
(-)src/lib/WP3SingleByteFunction.h.old (-1 / +1 lines)
Lines 32-38 Link Here
32
class WP3SingleByteFunction : public WP3Part
32
class WP3SingleByteFunction : public WP3Part
33
{
33
{
34
 public:
34
 public:
35
	static WP3SingleByteFunction * WP3SingleByteFunction::constructSingleByteFunction(WPXInputStream *input, uint8_t groupID);
35
	static WP3SingleByteFunction * constructSingleByteFunction(WPXInputStream *input, uint8_t groupID);
36
};
36
};
37
37
38
/*class WP3SpaceFunction : public WP3SingleByteFunction
38
/*class WP3SpaceFunction : public WP3SingleByteFunction
(-)src/lib/WP5SingleByteFunction.h.old (-1 / +1 lines)
Lines 32-38 Link Here
32
class WP5SingleByteFunction : public WP5Part
32
class WP5SingleByteFunction : public WP5Part
33
{
33
{
34
 public:
34
 public:
35
	static WP5SingleByteFunction * WP5SingleByteFunction::constructSingleByteFunction(WPXInputStream *input, uint8_t groupID);
35
	static WP5SingleByteFunction * constructSingleByteFunction(WPXInputStream *input, uint8_t groupID);
36
};
36
};
37
37
38
class WP5EOLFunction : public WP5SingleByteFunction
38
class WP5EOLFunction : public WP5SingleByteFunction
(-)src/lib/WP6FixedLengthGroup.h.old (-1 / +1 lines)
Lines 32-38 Link Here
32
{
32
{
33
 public:
33
 public:
34
	WP6FixedLengthGroup(uint8_t groupID);
34
	WP6FixedLengthGroup(uint8_t groupID);
35
	static WP6FixedLengthGroup * WP6FixedLengthGroup::constructFixedLengthGroup(WPXInputStream *input, uint8_t groupID);
35
	static WP6FixedLengthGroup * constructFixedLengthGroup(WPXInputStream *input, uint8_t groupID);
36
36
37
 	const uint8_t getGroup() const { return m_group; }
37
 	const uint8_t getGroup() const { return m_group; }
38
 
38
 
(-)src/lib/WP6SingleByteFunction.h.old (-1 / +1 lines)
Lines 31-37 Link Here
31
class WP6SingleByteFunction : public WP6Part
31
class WP6SingleByteFunction : public WP6Part
32
{
32
{
33
 public:
33
 public:
34
	static WP6SingleByteFunction * WP6SingleByteFunction::constructSingleByteFunction(WPXInputStream *input, uint8_t groupID);
34
	static WP6SingleByteFunction * constructSingleByteFunction(WPXInputStream *input, uint8_t groupID);
35
};
35
};
36
36
37
class WP6SpaceFunction : public WP6SingleByteFunction
37
class WP6SpaceFunction : public WP6SingleByteFunction
(-)src/lib/WP6VariableLengthGroup.h.old (-1 / +1 lines)
Lines 41-47 Link Here
41
	WP6VariableLengthGroup(); // WP6VariableLengthGroup should _never_ be constructed, only its inherited classes
41
	WP6VariableLengthGroup(); // WP6VariableLengthGroup should _never_ be constructed, only its inherited classes
42
	virtual ~WP6VariableLengthGroup();
42
	virtual ~WP6VariableLengthGroup();
43
43
44
	static WP6VariableLengthGroup * WP6VariableLengthGroup::constructVariableLengthGroup(WPXInputStream *input, uint8_t groupID);
44
	static WP6VariableLengthGroup * constructVariableLengthGroup(WPXInputStream *input, uint8_t groupID);
45
45
46
 protected:
46
 protected:
47
	void _read(WPXInputStream *input);
47
	void _read(WPXInputStream *input);
(-)src/lib/WPXHLListener.h.old (-1 / +1 lines)
Lines 157-163 Link Here
157
{
157
{
158
public:
158
public:
159
	WPXHLListener(std::vector<WPXPageSpan *> *pageList, WPXHLListenerImpl *listenerImpl);
159
	WPXHLListener(std::vector<WPXPageSpan *> *pageList, WPXHLListenerImpl *listenerImpl);
160
	WPXHLListener::~WPXHLListener();
160
	~WPXHLListener();
161
161
162
	void startDocument();
162
	void startDocument();
163
	void handleSubDocument(uint16_t textPID, const bool isHeaderFooter, WPXTableList tableList, int nextTableIndice);
163
	void handleSubDocument(uint16_t textPID, const bool isHeaderFooter, WPXTableList tableList, int nextTableIndice);

Return to bug 113896