Verovio
Source code documentation
reh.h
1 // Name: reh.h
3 // Author: Klaus Rettinghaus
4 // Created: 2020
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_REH_H__
9 #define __VRV_REH_H__
10 
11 #include "controlelement.h"
12 #include "textdirinterface.h"
13 #include "timeinterface.h"
14 
15 namespace vrv {
16 
17 class TextElement;
18 
19 //----------------------------------------------------------------------------
20 // Reh (rehearsal mark)
21 //----------------------------------------------------------------------------
22 
26 class Reh : public ControlElement,
27  public TextDirInterface,
28  public TimePointInterface,
29  public AttLang,
30  public AttVerticalGroup {
31 public:
36  Reh();
38  virtual ~Reh();
39  Object *Clone() const override { return new Reh(*this); }
40  void Reset() override;
41  std::string GetClassName() const override { return "reh"; }
43 
47  TextDirInterface *GetTextDirInterface() override { return vrv_cast<TextDirInterface *>(this); }
49  const TextDirInterface *GetTextDirInterface() const override { return vrv_cast<const TextDirInterface *>(this); }
50  TimePointInterface *GetTimePointInterface() override { return vrv_cast<TimePointInterface *>(this); }
51  const TimePointInterface *GetTimePointInterface() const override
52  {
53  return vrv_cast<const TimePointInterface *>(this);
54  }
56 
61  bool IsSupportedChild(ClassId classId) override;
62 
63  //----------//
64  // Functors //
65  //----------//
66 
70  FunctorCode Accept(Functor &functor) override;
72  FunctorCode Accept(ConstFunctor &functor) const override;
73  FunctorCode AcceptEnd(Functor &functor) override;
74  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
76 
77 protected:
78  //
79 private:
80  //
81 public:
82  //
83 private:
84  //
85 };
86 
87 } // namespace vrv
88 
89 #endif
vrv::Reh::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: reh.h:39
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Reh::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Reh::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element (text, rend.
vrv::TextDirInterface
This class is an interface for elements implementing a text directive, such as <dir>,...
Definition: textdirinterface.h:26
vrv::Reh
This class models the MEI <reh> element.
Definition: reh.h:26
vrv::Reh::Reset
void Reset() override
Virtual reset method.
vrv::ControlElement
This class represents elements appearing within a measure.
Definition: controlelement.h:28
vrv::TimePointInterface
This class is an interface for elements having a single time point, such as tempo,...
Definition: timeinterface.h:35