Verovio
Source code documentation
calcspanningbeamspansfunctor.h
1 // Name: calcspanningbeamspansfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_CALCSPANNINGBEAMSPANSFUNCTOR_H__
9 #define __VRV_CALCSPANNINGBEAMSPANSFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // CalcSpanningBeamSpansFunctor
17 //----------------------------------------------------------------------------
18 
26 public:
32  virtual ~CalcSpanningBeamSpansFunctor() = default;
34 
35  /*
36  * Abstract base implementation
37  */
38  bool ImplementsEndInterface() const override { return false; }
39 
40  /*
41  * Functor interface
42  */
44  FunctorCode VisitBeamSpan(BeamSpan *beamSpan) override;
46 
47 protected:
48  //
49 private:
50  //
51 public:
52  //
53 private:
54  //
55 };
56 
57 } // namespace vrv
58 
59 #endif // __VRV_CALCSPANNINGBEAMSPANSFUNCTOR_H__
vrv::BeamSpan
This class models the MEI <beamSpan> element.
Definition: beamspan.h:31
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::CalcSpanningBeamSpansFunctor
This class resolves spanning beamspans by breaking it into separate parts, each belonging to the corr...
Definition: calcspanningbeamspansfunctor.h:25
vrv::CalcSpanningBeamSpansFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: calcspanningbeamspansfunctor.h:38
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151