1 #ifndef RESETALLELEMENTSPOSITIONSHANDLER_H
2 #define RESETALLELEMENTSPOSITIONSHANDLER_H
3 
4 #include "migration/iscoremigrationhandler.h"
5 
6 class ResetAllElementsPositionsHandler : public IScoreMigrationHandler
7       {
8    public:
9       ResetAllElementsPositionsHandler() = default;
10 
11       bool handle(Ms::Score* score) override;
12       };
13 
14 #endif // RESETALLELEMENTSPOSITIONSHANDLER_H
15