summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/biffcodec.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/biffcodec.hxx')
-rw-r--r--sc/source/filter/inc/biffcodec.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/filter/inc/biffcodec.hxx b/sc/source/filter/inc/biffcodec.hxx
index de43c47fed97..aeb2bbded10b 100644
--- a/sc/source/filter/inc/biffcodec.hxx
+++ b/sc/source/filter/inc/biffcodec.hxx
@@ -28,11 +28,11 @@
namespace oox {
namespace xls {
-// ============================================================================
+
const sal_Int64 BIFF_RCF_BLOCKSIZE = 1024;
-// ============================================================================
+
/** Base class for BIFF stream decoders. */
class BiffDecoderBase : public ::comphelper::IDocPasswordVerifier
@@ -80,7 +80,7 @@ private:
typedef ::boost::shared_ptr< BiffDecoderBase > BiffDecoderRef;
-// ============================================================================
+
/** Decodes BIFF stream contents that are encoded using the old XOR algorithm. */
class BiffDecoder_XOR : public BiffDecoderBase
@@ -111,7 +111,7 @@ private:
sal_uInt16 mnHash;
};
-// ============================================================================
+
/** Decodes BIFF stream contents that are encoded using the RC4 algorithm. */
class BiffDecoder_RCF : public BiffDecoderBase
@@ -142,7 +142,7 @@ private:
::std::vector< sal_uInt8 > maVerifierHash;
};
-// ============================================================================
+
/** Helper for BIFF stream codecs. Holds the used codec object. */
class BiffCodecHelper : public WorkbookHelper
@@ -157,7 +157,7 @@ private:
BiffDecoderRef mxDecoder; /// The decoder for import filter.
};
-// ============================================================================
+
} // namespace xls
} // namespace oox