8 #ifndef __VRV_GRPSYM_H__ 
    9 #define __VRV_GRPSYM_H__ 
   12 #include "atts_shared.h" 
   28                public AttStaffGroupingSym,
 
   30                public AttStartEndId {
 
   41     std::string GetClassName()
 const override { 
return "grpSym"; }
 
   49     StaffDef *GetStartDef() { 
return m_startDef; }
 
   50     const StaffDef *GetStartDef()
 const { 
return m_startDef; }
 
   51     void SetEndDef(StaffDef *end);
 
   52     StaffDef *GetEndDef() { 
return m_endDef; }
 
   53     const StaffDef *GetEndDef()
 const { 
return m_endDef; }
 
   60     int GetDrawingX() 
const override;
 
   61     int GetDrawingY() 
const override;
 
   74     FunctorCode AcceptEnd(
Functor &functor) 
override;
 
   75     FunctorCode AcceptEnd(
ConstFunctor &functor) 
const override;
 
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 represents a MEI grpSym.
Definition: grpsym.h:30
 
Object * Clone() const override
Method call for copying child classes.
Definition: grpsym.h:39
 
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
 
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
 
This class represents a basic object.
Definition: object.h:62
 
This class represents a MEI staffDef.
Definition: staffdef.h:37