Verovio
Source code documentation
ornam.h
1 // Name: ornam.h
3 // Author: Laurent Pugin
4 // Created: 2022
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ORNAM_H__
9 #define __VRV_ORNAM_H__
10 
11 #include "atts_cmn.h"
12 #include "atts_cmnornaments.h"
13 #include "atts_externalsymbols.h"
14 #include "controlelement.h"
15 #include "textdirinterface.h"
16 #include "timeinterface.h"
17 
18 namespace vrv {
19 
20 //----------------------------------------------------------------------------
21 // Ornam
22 //----------------------------------------------------------------------------
23 
27 class Ornam : public ControlElement,
28  public TextListInterface,
29  public TextDirInterface,
30  public TimePointInterface,
31  public AttOrnamentAccid {
32 public:
37  Ornam();
39  virtual ~Ornam();
40  Object *Clone() const override { return new Ornam(*this); }
41  void Reset() override;
42  std::string GetClassName() const override { return "ornam"; }
44 
48  TextDirInterface *GetTextDirInterface() override { return vrv_cast<TextDirInterface *>(this); }
50  const TextDirInterface *GetTextDirInterface() const override { return vrv_cast<const TextDirInterface *>(this); }
51  TimePointInterface *GetTimePointInterface() override { return vrv_cast<TimePointInterface *>(this); }
52  const TimePointInterface *GetTimePointInterface() const override
53  {
54  return vrv_cast<const TimePointInterface *>(this);
55  }
57 
62  bool IsSupportedChild(ClassId classId) override;
63 
64  //----------//
65  // Functors //
66  //----------//
67 
71  FunctorCode Accept(Functor &functor) override;
73  FunctorCode Accept(ConstFunctor &functor) const override;
74  FunctorCode AcceptEnd(Functor &functor) override;
75  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
77 
78 protected:
79  //
80 private:
81  //
82 public:
83  //
84 private:
85  //
86 };
87 
88 } // namespace vrv
89 
90 #endif
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::TextListInterface
This class is an pseudo interface for elements maintaining a flat list of children LayerElement for p...
Definition: object.h:972
vrv::TextDirInterface
This class is an interface for elements implementing a text directive, such as <dir>,...
Definition: textdirinterface.h:26
vrv::Ornam
This class models the MEI <ornam> element.
Definition: ornam.h:27
vrv::Ornam::Reset
void Reset() override
Virtual reset method.
vrv::Ornam::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::Ornam::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: ornam.h:40
vrv::Ornam::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element (text, rend.
vrv::TimePointInterface
This class is an interface for elements having a single time point, such as tempo,...
Definition: timeinterface.h:35