///////////////////////////////////////////////////////////////////////////// // Name: tabdursym.h // Author: Laurent Pugin // Created: 2019 // Copyright (c) Authors and others. All rights reserved. ///////////////////////////////////////////////////////////////////////////// #ifndef __VRV_TABDURSYM_H__ #define __VRV_TABDURSYM_H__ #include "atts_shared.h" #include "layerelement.h" namespace vrv { //---------------------------------------------------------------------------- // TabDurSym //---------------------------------------------------------------------------- /** * This class models the MEI element. */ class TabDurSym : public LayerElement, public AttNNumberLike { public: /** * @name Constructors, destructors, and other standard methods * Reset method reset all attribute classes */ ///@{ TabDurSym(); virtual ~TabDurSym(); virtual void Reset(); virtual std::string GetClassName() const { return "TabDurSym"; }; virtual ClassId GetClassId() const { return TABDURSYM; }; ///@} /** Override the method since alignment is required */ virtual bool HasToBeAligned() const { return true; } /** * Add an element to a element. */ virtual bool IsSupportedChild(Object *object); //----------// // Functors // //----------// protected: // private: // public: // private: // }; } // namespace vrv #endif