///////////////////////////////////////////////////////////////////////////// // Name: score.h // Author: Laurent Pugin // Created: 29/08/2016 // Copyright (c) Authors and others. All rights reserved. ///////////////////////////////////////////////////////////////////////////// #ifndef __VRV_SCORE_H__ #define __VRV_SCORE_H__ #include "atts_shared.h" #include "object.h" namespace vrv { //---------------------------------------------------------------------------- // Score //---------------------------------------------------------------------------- /** * This class represent a in MEI. * It is used only for loading score-based MEI documents before they are * converted to page-based MEI. */ class Score : public Object, public AttLabelled, public AttNNumberLike { public: /** * @name Constructors, destructors, and other standard methods * Reset method resets all attribute classes */ ///@{ Score(); virtual ~Score(); virtual void Reset(); virtual std::string GetClassName() const { return "Score"; } virtual ClassId GetClassId() const { return SCORE; } ///@} /** * @name Methods for adding allowed content */ ///@{ virtual bool IsSupportedChild(Object *object); ///@} //----------// // Functors // //----------// private: // public: // private: // }; } // namespace vrv #endif