summaryrefslogtreecommitdiff
path: root/include/svl/ilstitem.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svl/ilstitem.hxx')
-rw-r--r--include/svl/ilstitem.hxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/svl/ilstitem.hxx b/include/svl/ilstitem.hxx
index a5916eadf1f1..198af2747fd0 100644
--- a/include/svl/ilstitem.hxx
+++ b/include/svl/ilstitem.hxx
@@ -36,6 +36,11 @@ public:
SfxIntegerListItem( sal_uInt16 nWhich, const css::uno::Sequence < sal_Int32 >& rList );
virtual ~SfxIntegerListItem() override;
+ SfxIntegerListItem(SfxIntegerListItem const &) = default;
+ SfxIntegerListItem(SfxIntegerListItem &&) = default;
+ SfxIntegerListItem & operator =(SfxIntegerListItem const &) = default;
+ SfxIntegerListItem & operator =(SfxIntegerListItem &&) = default;
+
const std::vector< sal_Int32 >& GetList() const { return m_aList; }
virtual bool operator==( const SfxPoolItem& ) const override;