Verovio
Source code documentation
pitchinflection.h
1 // Name: pitchinfection.h
3 // Author: Laurent Pugin
4 // Created: 2019
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_PITCH_INFLECTION_H__
9 #define __VRV_PITCH_INFLECTION_H__
10 
11 #include "controlelement.h"
12 #include "timeinterface.h"
13 
14 namespace vrv {
15 
16 //----------------------------------------------------------------------------
17 // PitchInflection
18 //----------------------------------------------------------------------------
19 
24 public:
31  virtual ~PitchInflection();
32  Object *Clone() const override { return new PitchInflection(*this); }
33  void Reset() override;
34  std::string GetClassName() const override { return "pitchInflection"; }
36 
40  TimePointInterface *GetTimePointInterface() override { return vrv_cast<TimePointInterface *>(this); }
42  const TimePointInterface *GetTimePointInterface() const override
43  {
44  return vrv_cast<const TimePointInterface *>(this);
45  }
46  TimeSpanningInterface *GetTimeSpanningInterface() override { return vrv_cast<TimeSpanningInterface *>(this); }
47  const TimeSpanningInterface *GetTimeSpanningInterface() const override
48  {
49  return vrv_cast<const TimeSpanningInterface *>(this);
50  }
52 
53  //----------//
54  // Functors //
55  //----------//
56 
60  FunctorCode Accept(Functor &functor) override;
62  FunctorCode Accept(ConstFunctor &functor) const override;
63  FunctorCode AcceptEnd(Functor &functor) override;
64  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
66 
67 protected:
68  //
69 private:
70  //
71 public:
72  //
73 private:
74  //
75 };
76 
77 } // namespace vrv
78 
79 #endif
vrv::PitchInflection::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::PitchInflection
This class models the MEI <dir> element.
Definition: pitchinflection.h:23
vrv::PitchInflection::Reset
void Reset() override
Virtual reset method.
vrv::ControlElement
This class represents elements appearing within a measure.
Definition: controlelement.h:28
vrv::TimeSpanningInterface
This class is an interface for spanning elements, such as slur, hairpin, etc.
Definition: timeinterface.h:141
vrv::PitchInflection::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: pitchinflection.h:32