///////////////////////////////////////////////////////////////////////////// // Name: octave.h // Author: Laurent Pugin // Created: 2016 // Copyright (c) Authors and others. All rights reserved. ///////////////////////////////////////////////////////////////////////////// #ifndef __VRV_OCTAVE_H__ #define __VRV_OCTAVE_H__ #include "atts_cmn.h" #include "atts_shared.h" #include "controlelement.h" #include "timeinterface.h" namespace vrv { //---------------------------------------------------------------------------- // Octave //---------------------------------------------------------------------------- /** * This class models the MEI element. */ class Octave : public ControlElement, public TimeSpanningInterface, public AttColor, public AttExtender, public AttLineRend, public AttLineRendBase, public AttNNumberLike, public AttOctaveDisplacement { public: /** * @name Constructors, destructors, and other standard methods * Reset method reset all attribute classes */ ///@{ Octave(); virtual ~Octave(); virtual Object *Clone() const { return new Octave(*this); } virtual void Reset(); virtual std::string GetClassName() const { return "Octave"; } virtual ClassId GetClassId() const { return OCTAVE; } ///@} /** * @name Getter to interfaces */ ///@{ virtual TimePointInterface *GetTimePointInterface() { return dynamic_cast(this); } virtual TimeSpanningInterface *GetTimeSpanningInterface() { return dynamic_cast(this); } ///@} //----------// // Functors // //----------// protected: // private: // public: // private: // }; } // namespace vrv #endif