summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/tocread.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/tocread.hxx')
-rw-r--r--lotuswordpro/source/filter/tocread.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/lotuswordpro/source/filter/tocread.hxx b/lotuswordpro/source/filter/tocread.hxx
index 10e3adc3272a..46c09ee7379e 100644
--- a/lotuswordpro/source/filter/tocread.hxx
+++ b/lotuswordpro/source/filter/tocread.hxx
@@ -62,38 +62,38 @@
namespace OpenStormBento
{
-
class CBenTOCReader
{
public: // Methods
- explicit CBenTOCReader(LtcBenContainer * pContainer)
+ explicit CBenTOCReader(LtcBenContainer* pContainer)
: cpContainer(pContainer)
, cBlockSize(0)
, cCurr(0)
, cTOCSize(0)
- { }
+ {
+ }
BenError ReadLabelAndTOC();
private: // Methods
BenError ReadLabel(tools::ULong* pTOCOffset, tools::ULong* pTOCSize);
- BenError SearchForLabel(BenByte * pLabel);
+ BenError SearchForLabel(BenByte* pLabel);
BenError ReadTOC();
- BenError ReadSegments(CBenValue * pValue, BenByte * pLookAhead);
- BenError ReadSegment(CBenValue * pValue, BenByte * pLookAhead);
+ BenError ReadSegments(CBenValue* pValue, BenByte* pLookAhead);
+ BenError ReadSegment(CBenValue* pValue, BenByte* pLookAhead);
bool CanGetData(tools::ULong Amt);
- BenError GetByte(BenByte * pByte);
- BenError GetDWord(BenDWord * pDWord);
+ BenError GetByte(BenByte* pByte);
+ BenError GetDWord(BenDWord* pDWord);
BenByte GetCode();
BenError GetData(void* pBuffer, tools::ULong Amt);
private: // Data
- LtcBenContainer * cpContainer;
+ LtcBenContainer* cpContainer;
std::unique_ptr<BenByte[]> cpTOC;
tools::ULong cBlockSize;
tools::ULong cCurr;
tools::ULong cTOCSize;
};
-}//end namespace OpenStormBento
+} //end namespace OpenStormBento
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */