 |
Verovio
Source code documentation
|
8 #ifndef __VRV_GENERICLAYERELEMENT_H__
9 #define __VRV_GENERICLAYERELEMENT_H__
11 #include "layerelement.h"
33 void Reset()
override;
34 std::string GetClassName()
const override {
return m_className; }
46 void SetContent(std::string content) { m_content = content; }
55 FunctorCode
Accept(Functor &functor)
override;
57 FunctorCode
Accept(ConstFunctor &functor)
const override;
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;
Object * Clone() const override
Method call for copying child classes.
Definition: genericlayerelement.h:32
This class represents a basic object.
Definition: object.h:59
This class holds generic elements existing within MEI <layer> but not supported by Verovio.
Definition: genericlayerelement.h:22
std::string GetContent()
Return the MEI element original name.
Definition: genericlayerelement.h:45
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
void Reset() override
Virtual reset method.
std::string GetMEIName() const
Return the MEI element original name.
Definition: genericlayerelement.h:40
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46