summaryrefslogtreecommitdiff
path: root/svl/inc/svl/ownlist.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/inc/svl/ownlist.hxx')
-rw-r--r--svl/inc/svl/ownlist.hxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/svl/inc/svl/ownlist.hxx b/svl/inc/svl/ownlist.hxx
index 6bb9f311119b..ea1fc3842f4d 100644
--- a/svl/inc/svl/ownlist.hxx
+++ b/svl/inc/svl/ownlist.hxx
@@ -61,19 +61,6 @@ public:
}
const String & GetCommand() const { return aCommand; }
const String & GetArgument() const { return aArgument; }
-
- friend SvStream& operator >> ( SvStream& rStm, SvCommand & rThis )
- {
- rStm.ReadByteString( rThis.aCommand, gsl_getSystemTextEncoding() );
- rStm.ReadByteString( rThis.aArgument, gsl_getSystemTextEncoding() );
- return rStm;
- }
- friend SvStream& operator << ( SvStream& rStm, const SvCommand & rThis )
- {
- rStm.WriteByteString( rThis.aCommand, gsl_getSystemTextEncoding() );
- rStm.WriteByteString( rThis.aArgument, gsl_getSystemTextEncoding() );
- return rStm;
- }
};
typedef ::std::vector< SvCommand > SvCommandList_impl;
@@ -98,9 +85,6 @@ public:
sal_Bool FillFromSequence( const com::sun::star::uno::Sequence < com::sun::star::beans::PropertyValue >& );
void FillSequence( com::sun::star::uno::Sequence < com::sun::star::beans::PropertyValue >& );
- SVL_DLLPUBLIC friend SvStream& operator >> ( SvStream& rStm, SvCommandList & );
- SVL_DLLPUBLIC friend SvStream& operator << ( SvStream&, const SvCommandList & );
-
size_t size() const { return aCommandList.size(); }
SvCommand operator[]( size_t i) {