8 #ifndef __VRV_GENERICLAYERELEMENT_H__
9 #define __VRV_GENERICLAYERELEMENT_H__
11 #include "layerelement.h"
34 std::string GetClassName()
const override {
return m_className; }
46 void SetContent(std::string content) { m_content = content; }
58 FunctorCode AcceptEnd(
Functor &functor)
override;
59 FunctorCode AcceptEnd(
ConstFunctor &functor)
const override;
64 std::string m_className;
66 std::string m_meiName;
68 std::string m_content;
This abstract class is the base class for all const functors.
Definition: functor.h:126
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
This class holds generic elements existing within MEI <layer> but not supported by Verovio.
Definition: genericlayerelement.h:22
Object * Clone() const override
Method call for copying child classes.
Definition: genericlayerelement.h:32
std::string GetMEIName() const
Return the MEI element original name.
Definition: genericlayerelement.h:40
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
void Reset() override
Virtual reset method.
std::string GetContent()
Return the MEI element original name.
Definition: genericlayerelement.h:45
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:51
This class represents a basic object.
Definition: object.h:61