diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2014-10-07 14:44:53 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2014-10-10 13:50:03 +0200 |
commit | 04ebf437087c0a849dacf4816f0f2ee45799f840 (patch) | |
tree | f516bc083e43766c7a1c20f4288693a46b10e71f /package/inc | |
parent | 3d8f059802c209dbd0cfddc454198fce24c876b5 (diff) |
package: ZipOutputStream: prefix members
Change-Id: I9cc21ba87484560ec0db5424800dd67f80e00540
Diffstat (limited to 'package/inc')
-rw-r--r-- | package/inc/ZipOutputStream.hxx | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/package/inc/ZipOutputStream.hxx b/package/inc/ZipOutputStream.hxx index f2f9ce1f6171..a8d106be8dc1 100644 --- a/package/inc/ZipOutputStream.hxx +++ b/package/inc/ZipOutputStream.hxx @@ -20,7 +20,6 @@ #define INCLUDED_PACKAGE_INC_ZIPOUTPUTSTREAM_HXX #include <com/sun/star/uno/Reference.hxx> -#include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/io/XOutputStream.hpp> #include <com/sun/star/xml/crypto/XCipherContext.hpp> #include <com/sun/star/xml/crypto/XDigestContext.hpp> @@ -33,32 +32,28 @@ struct ZipEntry; class ZipPackageStream; -namespace rtl -{ - template < class T > class Reference; -} class ZipOutputStream { protected: ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext> m_xContext; - ::com::sun::star::uno::Reference< ::com::sun::star::io::XOutputStream > xStream; + ::com::sun::star::uno::Reference< ::com::sun::star::io::XOutputStream > m_xStream; - ::std::vector < ZipEntry * > aZipList; + ::std::vector < ZipEntry * > m_aZipList; ::com::sun::star::uno::Sequence< sal_Int8 > m_aDeflateBuffer; - OUString sComment; - ZipUtils::Deflater aDeflater; + OUString m_sComment; + ZipUtils::Deflater m_aDeflater; ::com::sun::star::uno::Reference< ::com::sun::star::xml::crypto::XCipherContext > m_xCipherContext; ::com::sun::star::uno::Reference< ::com::sun::star::xml::crypto::XDigestContext > m_xDigestContext; - CRC32 aCRC; - ByteChucker aChucker; - ZipEntry *pCurrentEntry; - sal_Int16 nMethod, nLevel, mnDigested; - bool bFinished, bEncryptCurrentEntry; + CRC32 m_aCRC; + ByteChucker m_aChucker; + ZipEntry *m_pCurrentEntry; + sal_Int16 m_nMethod, m_nLevel, m_nDigested; + bool m_bFinished, m_bEncryptCurrentEntry; ZipPackageStream* m_pCurrentStream; public: |