Verovio
Source code documentation
cpmark.h
1 // Name: cpmark.h
3 // Author: Laurent Pugin
4 // Created: 2024
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_CPMARK_H__
9 #define __VRV_CPMARK_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 // CpMark (copy/colla parte mark)
21 //----------------------------------------------------------------------------
22 
27 public:
32  CpMark();
34  virtual ~CpMark();
35  Object *Clone() const override { return new CpMark(*this); }
36  void Reset() override;
37  std::string GetClassName() const override { return "cpMark"; }
39 
43  TextDirInterface *GetTextDirInterface() override { return vrv_cast<TextDirInterface *>(this); }
45  const TextDirInterface *GetTextDirInterface() const override { return vrv_cast<const TextDirInterface *>(this); }
46  TimePointInterface *GetTimePointInterface() override { return vrv_cast<TimePointInterface *>(this); }
47  const TimePointInterface *GetTimePointInterface() const override
48  {
49  return vrv_cast<const TimePointInterface *>(this);
50  }
51  TimeSpanningInterface *GetTimeSpanningInterface() override { return vrv_cast<TimeSpanningInterface *>(this); }
52  const TimeSpanningInterface *GetTimeSpanningInterface() const override
53  {
54  return vrv_cast<const TimeSpanningInterface *>(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::CpMark
This class models the MEI <cpMark> element.
Definition: cpmark.h:26
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::CpMark::Reset
void Reset() override
Virtual reset method.
vrv::CpMark::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: cpmark.h:35
vrv::CpMark::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element (text, rend.
vrv::TextListInterface
This class is an pseudo interface for elements maintaining a flat list of children LayerElement for p...
Definition: object.h:972
vrv::CpMark::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::TextDirInterface
This class is an interface for elements implementing a text directive, such as <dir>,...
Definition: textdirinterface.h:26
vrv::ControlElement
This class represents elements appearing within a measure.
Definition: controlelement.h:28
vrv::TimeSpanningInterface
This class is an interface for spanning elements, such as slur, hairpin, etc.
Definition: timeinterface.h:141