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, 0 insertions, 12 deletions
diff --git a/sc/source/filter/inc/biffcodec.hxx b/sc/source/filter/inc/biffcodec.hxx
index 8031fbbc6b87..306f7ccbaccf 100644
--- a/sc/source/filter/inc/biffcodec.hxx
+++ b/sc/source/filter/inc/biffcodec.hxx
@@ -28,12 +28,8 @@
namespace oox {
namespace xls {
-
-
const sal_Int64 BIFF_RCF_BLOCKSIZE = 1024;
-
-
/** Base class for BIFF stream decoders. */
class BiffDecoderBase : public ::comphelper::IDocPasswordVerifier
{
@@ -80,8 +76,6 @@ 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,8 +105,6 @@ private:
sal_uInt16 mnHash;
};
-
-
/** Decodes BIFF stream contents that are encoded using the RC4 algorithm. */
class BiffDecoder_RCF : public BiffDecoderBase
{
@@ -142,8 +134,6 @@ private:
::std::vector< sal_uInt8 > maVerifierHash;
};
-
-
/** Helper for BIFF stream codecs. Holds the used codec object. */
class BiffCodecHelper : public WorkbookHelper
{
@@ -157,8 +147,6 @@ private:
BiffDecoderRef mxDecoder; /// The decoder for import filter.
};
-
-
} // namespace xls
} // namespace oox