diff options
Diffstat (limited to 'sc/inc/refhint.hxx')
-rw-r--r-- | sc/inc/refhint.hxx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sc/inc/refhint.hxx b/sc/inc/refhint.hxx index e558c8e7fe48..4bc7eb468110 100644 --- a/sc/inc/refhint.hxx +++ b/sc/inc/refhint.hxx @@ -39,6 +39,11 @@ public: RefHint() = delete; virtual ~RefHint() override = 0; + RefHint(RefHint const &) = default; + RefHint(RefHint &&) = default; + RefHint & operator =(RefHint const &) = default; + RefHint & operator =(RefHint &&) = default; + Type getType() const; }; @@ -77,6 +82,11 @@ public: RefColReorderHint( const sc::ColRowReorderMapType& rColMap, SCTAB nTab, SCROW nRow1, SCROW nRow2 ); virtual ~RefColReorderHint() override; + RefColReorderHint(RefColReorderHint const &) = default; + RefColReorderHint(RefColReorderHint &&) = default; + RefColReorderHint & operator =(RefColReorderHint const &) = default; + RefColReorderHint & operator =(RefColReorderHint &&) = default; + const sc::ColRowReorderMapType& getColMap() const; SCTAB getTab() const; @@ -95,6 +105,11 @@ public: RefRowReorderHint( const sc::ColRowReorderMapType& rRowMap, SCTAB nTab, SCCOL nCol1, SCCOL nCol2 ); virtual ~RefRowReorderHint() override; + RefRowReorderHint(RefRowReorderHint const &) = default; + RefRowReorderHint(RefRowReorderHint &&) = default; + RefRowReorderHint & operator =(RefRowReorderHint const &) = default; + RefRowReorderHint & operator =(RefRowReorderHint &&) = default; + const sc::ColRowReorderMapType& getRowMap() const; SCTAB getTab() const; |