summaryrefslogtreecommitdiff
path: root/svl/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-16 23:06:13 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-17 09:54:13 +0100
commit7acd9e2c28911003511de641cfd18b86bde7d808 (patch)
tree17d19f4778f0df9a9557d827ea0b6b43757750ec /svl/inc
parent9b845e5814ba8f251986494bed4ec3c64bddcfd3 (diff)
callcatcher: remove some methods
Diffstat (limited to 'svl/inc')
-rw-r--r--svl/inc/svl/filerec.hxx28
1 files changed, 0 insertions, 28 deletions
diff --git a/svl/inc/svl/filerec.hxx b/svl/inc/svl/filerec.hxx
index 2f80f02cca9a..5c3a8dd1c6ab 100644
--- a/svl/inc/svl/filerec.hxx
+++ b/svl/inc/svl/filerec.hxx
@@ -342,14 +342,6 @@ class SVL_DLLPUBLIC SfxSingleRecordWriter: public SfxMiniRecordWriter
1* sal_uInt8 Content-Version
1* sal_uInt16 Content-Tag
SizeOfContent* sal_uInt8 Content
-
- [Beispiel]
-
- {
- SfxSingleRecordWriter aRecord( pStream, MY_TAG_X, MY_VERSION );
- *aRecord << aMember1;
- *aRecord << aMember2;
- }
*/
{
@@ -359,9 +351,6 @@ protected:
sal_uInt16 nTag, sal_uInt8 nCurVer );
public:
- SfxSingleRecordWriter( SvStream *pStream,
- sal_uInt16 nTag, sal_uInt8 nCurVer );
-
inline void Reset();
sal_uInt32 Close( bool bSeekToEndOfRec = true );
@@ -379,22 +368,6 @@ class SVL_DLLPUBLIC SfxSingleRecordReader: public SfxMiniRecordReader
Es ist auch m"oglich, den Record zu "uberspringen, ohne sein internes
Format zu kennen.
-
- [Beispiel]
-
- {
- SfxSingleRecordReader aRecord( pStream );
- switch ( aRecord.GetTag() )
- {
- case MY_TAG_X:
- aRecord >> aMember1;
- if ( aRecord.HasVersion(2) )
- *aRecord >> aMember2;
- break;
-
- ...
- }
- }
*/
{
@@ -414,7 +387,6 @@ protected:
bool ReadHeader_Impl( sal_uInt16 nTypes );
public:
- SfxSingleRecordReader( SvStream *pStream, sal_uInt16 nTag );
inline sal_uInt16 GetTag() const;