diff options
Diffstat (limited to 'include/sot')
-rw-r--r-- | include/sot/storinfo.hxx | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/include/sot/storinfo.hxx b/include/sot/storinfo.hxx index b9a3c4fe13d2..13f0c10592d3 100644 --- a/include/sot/storinfo.hxx +++ b/include/sot/storinfo.hxx @@ -32,30 +32,30 @@ class SvStream; class SvStorageInfo { friend class SotStorage; - OUString aName; - sal_uLong nSize; - bool bStream; - bool bStorage; + OUString aName; + sal_uLong nSize; + bool bStream; + bool bStorage; public: - SvStorageInfo( const StgDirEntry& ); - SvStorageInfo( const OUString& rName, sal_uLong nSz, bool bIsStorage ) - : aName( rName ) - , nSize( nSz ) - , bStream( !bIsStorage ) - , bStorage( bIsStorage ) - {} - - const OUString & GetName() const { return aName; } - bool IsStream() const { return bStream; } - bool IsStorage() const { return bStorage; } - sal_uLong GetSize() const { return nSize; } + SvStorageInfo(const StgDirEntry&); + SvStorageInfo(const OUString& rName, sal_uLong nSz, bool bIsStorage) + : aName(rName) + , nSize(nSz) + , bStream(!bIsStorage) + , bStorage(bIsStorage) + {} + + const OUString & GetName() const { return aName; } + bool IsStream() const { return bStream; } + bool IsStorage() const { return bStorage; } + sal_uLong GetSize() const { return nSize; } }; -typedef ::std::vector< SvStorageInfo > SvStorageInfoList; +typedef std::vector<SvStorageInfo> SvStorageInfoList; -SOT_DLLPUBLIC SotClipboardFormatId ReadClipboardFormat( SvStream & rStm ); -SOT_DLLPUBLIC void WriteClipboardFormat( SvStream & rStm, SotClipboardFormatId nFormat ); +SOT_DLLPUBLIC SotClipboardFormatId ReadClipboardFormat(SvStream & rStm); +SOT_DLLPUBLIC void WriteClipboardFormat(SvStream & rStm, SotClipboardFormatId nFormat); #endif // _STORINFO_HXX |