mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Mover.h: let move be defined
This commit is contained in:
parent
29a82fdc58
commit
d4ea07705a
12
src/Mover.h
12
src/Mover.h
@ -27,7 +27,13 @@ namespace support { class FileName; }
|
|||||||
class Mover
|
class Mover
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual ~Mover() {}
|
virtual ~Mover() = default;
|
||||||
|
Mover(Mover &&) = default;
|
||||||
|
Mover & operator=(Mover &&) = default;
|
||||||
|
Mover(Mover const &) = default;
|
||||||
|
Mover & operator=(Mover const &) = default;
|
||||||
|
|
||||||
|
Mover() = default;
|
||||||
|
|
||||||
/** Copy file @c from to @c to.
|
/** Copy file @c from to @c to.
|
||||||
* This version should be used to copy files from the original
|
* This version should be used to copy files from the original
|
||||||
@ -109,9 +115,7 @@ protected:
|
|||||||
class SpecialisedMover : public Mover
|
class SpecialisedMover : public Mover
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
SpecialisedMover() {}
|
SpecialisedMover() = default;
|
||||||
|
|
||||||
virtual ~SpecialisedMover() {}
|
|
||||||
|
|
||||||
/** @c command should be of the form
|
/** @c command should be of the form
|
||||||
* <code>
|
* <code>
|
||||||
|
Loading…
Reference in New Issue
Block a user