Verovio
Source code documentation
adjustxrelfortranscriptionfunctor.h
1 // Name: adjustxrelfortranscriptionfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTXRELFORTRANSCRIPTIONFUNCTOR_H__
9 #define __VRV_ADJUSTXRELFORTRANSCRIPTIONFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustXRelForTranscriptionFunctor
17 //----------------------------------------------------------------------------
18 
23 public:
29  virtual ~AdjustXRelForTranscriptionFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return false; }
36 
37  /*
38  * Functor interface
39  */
41  FunctorCode VisitLayerElement(LayerElement *layerElement) override;
43 
44 protected:
45  //
46 private:
47  //
48 public:
49  //
50 private:
51  //
52 };
53 
54 } // namespace vrv
55 
56 #endif // __VRV_ADJUSTXRELFORTRANSCRIPTIONFUNCTOR_H__
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::AdjustXRelForTranscriptionFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustxrelfortranscriptionfunctor.h:35
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::AdjustXRelForTranscriptionFunctor
This class adjusts the XRel positions taking into account the bounding boxes.
Definition: adjustxrelfortranscriptionfunctor.h:22