Verovio
Source code documentation
caesura.h
1 // Name: caesura.h
3 // Author: Klaus Rettinghaus, Thomas Weber
4 // Created: 2021
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_CAESURA_H__
9 #define __VRV_CAESURA_H__
10 
11 #include "atts_cmn.h"
12 #include "atts_externalsymbols.h"
13 #include "controlelement.h"
14 #include "timeinterface.h"
15 
16 namespace vrv {
17 
18 //----------------------------------------------------------------------------
19 // Caesura
20 //----------------------------------------------------------------------------
21 
25 class Caesura : public ControlElement,
26  public TimePointInterface,
27  public AttExtSymAuth,
28  public AttExtSymNames,
29  public AttPlacementRelStaff {
30 public:
35  Caesura();
37  virtual ~Caesura();
38  Object *Clone() const override { return new Caesura(*this); }
39  void Reset() override;
40  std::string GetClassName() const override { return "caesura"; }
42 
46  TimePointInterface *GetTimePointInterface() override { return vrv_cast<TimePointInterface *>(this); }
48  const TimePointInterface *GetTimePointInterface() const override
49  {
50  return vrv_cast<const TimePointInterface *>(this);
51  }
53 
57  char32_t GetCaesuraGlyph() const;
60 
61  //----------//
62  // Functors //
63  //----------//
64 
68  FunctorCode Accept(Functor &functor) override;
70  FunctorCode Accept(ConstFunctor &functor) const override;
71  FunctorCode AcceptEnd(Functor &functor) override;
72  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
74 
75 protected:
76  //
77 private:
78  //
79 public:
80  //
81 private:
82  //
83 };
84 
85 } // namespace vrv
86 
87 #endif
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Caesura::Reset
void Reset() override
Virtual reset method.
vrv::Caesura::GetCaesuraGlyph
char32_t GetCaesuraGlyph() const
Get the SMuFL glyph.
vrv::Caesura::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::ControlElement
This class represents elements appearing within a measure.
Definition: controlelement.h:28
vrv::Caesura::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: caesura.h:38
vrv::Caesura
This class models the MEI <caesura> element.
Definition: caesura.h:25
vrv::TimePointInterface
This class is an interface for elements having a single time point, such as tempo,...
Definition: timeinterface.h:35