Verovio
Source code documentation
calcbboxoverflowsfunctor.h
1 // Name: calcbboxoverflowsfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_CALCBBOXOVERFLOWSFUNCTOR_H__
9 #define __VRV_CALCBBOXOVERFLOWSFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // CalcBBoxOverflowsFunctor
17 //----------------------------------------------------------------------------
18 
24 public:
30  virtual ~CalcBBoxOverflowsFunctor() = default;
32 
33  /*
34  * Abstract base implementation
35  */
36  bool ImplementsEndInterface() const override { return true; }
37 
38  /*
39  * Functor interface
40  */
42  FunctorCode VisitLayerEnd(Layer *layer) override;
43  FunctorCode VisitObject(Object *object) override;
45 
46 protected:
47  //
48 private:
49  //
50 public:
51  //
52 private:
53  //
54 };
55 
56 } // namespace vrv
57 
58 #endif // __VRV_CALCBBOXOVERFLOWSFUNCTOR_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::Object
This class represents a basic object.
Definition: object.h:59
vrv::CalcBBoxOverflowsFunctor
This class fills the arrays of bounding boxes (above and below) for each staff alignment for which th...
Definition: calcbboxoverflowsfunctor.h:23
vrv::CalcBBoxOverflowsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: calcbboxoverflowsfunctor.h:36
vrv::Layer
This class represents a layer in a laid-out score (Doc).
Definition: layer.h:33
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151