Verovio
Source code documentation
adjusttupletsxfunctor.h
1 // Name: adjusttupletsxfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTTUPLETSXFUNCTOR_H__
9 #define __VRV_ADJUSTTUPLETSXFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustTupletsXFunctor
17 //----------------------------------------------------------------------------
18 
23 public:
29  virtual ~AdjustTupletsXFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return false; }
36 
37  /*
38  * Functor interface
39  */
41  FunctorCode VisitTuplet(Tuplet *tuplet) override;
43 
44 protected:
45  //
46 private:
47  //
48 public:
49  //
50 private:
51  //
52 };
53 
54 } // namespace vrv
55 
56 #endif // __VRV_ADJUSTTUPLETSXFUNCTOR_H__
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::AdjustTupletsXFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjusttupletsxfunctor.h:35
vrv::Tuplet
Definition: tuplet.h:28
vrv::AdjustTupletsXFunctor
This class calculates the X position of tuplet brackets and num.
Definition: adjusttupletsxfunctor.h:22
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151