Verovio
Source code documentation
adjustyrelfortranscriptionfunctor.h
1 // Name: adjustyrelfortranscriptionfunctor.h
3 // Author: Yinan Zhou
4 // Created: 2024
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTYRELFORTRANSCRIPTIONFUNCTOR_H__
9 #define __VRV_ADJUSTYRELFORTRANSCRIPTIONFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustYRelForTranscriptionFunctor
17 //----------------------------------------------------------------------------
18 
23 public:
29  virtual ~AdjustYRelForTranscriptionFunctor() = 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_ADJUSTYRELFORTRANSCRIPTIONFUNCTOR_H__
vrv::AdjustYRelForTranscriptionFunctor
This class adjusts the YRel positions taking into account the bounding boxes.
Definition: adjustyrelfortranscriptionfunctor.h:22
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::AdjustYRelForTranscriptionFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustyrelfortranscriptionfunctor.h:35
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46