11 #include "controlelement.h"
12 #include "textdirinterface.h"
13 #include "timeinterface.h"
31 public AttTypography {
42 std::string GetClassName()
const override {
return "mNum"; }
49 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
54 return vrv_cast<const TimePointInterface *>(
this);
68 bool IsGenerated()
const {
return m_isGenerated; }
69 void IsGenerated(
bool isGenerated) { m_isGenerated = isGenerated; }
82 FunctorCode AcceptEnd(
Functor &functor)
override;
83 FunctorCode AcceptEnd(
ConstFunctor &functor)
const override;
This abstract class is the base class for all const functors.
Definition: functor.h:126
This class represents elements appearing within a measure.
Definition: controlelement.h:33
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
This class models the MEI <mNum> element.
Definition: mnum.h:31
void Reset() override
Virtual reset method.
Object * Clone() const override
Method call for copying child classes.
Definition: mnum.h:40
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
bool IsSupportedChild(ClassId classId) override
Add an element (text, rend.
This class represents a basic object.
Definition: object.h:61
This class is an interface for elements implementing a text directive, such as <dir>,...
Definition: textdirinterface.h:26
This class is an pseudo interface for elements maintaining a flat list of children LayerElement for p...
Definition: object.h:992
This class is an interface for elements having a single time point, such as tempo,...
Definition: timeinterface.h:39