Verovio
Source code documentation
course.h
1 // Name: course.h
3 // Author: Laurent Pugin
4 // Created: 2019
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_COURSE_H__
9 #define __VRV_COURSE_H__
10 
11 #include "atts_shared.h"
12 #include "object.h"
13 
14 namespace vrv {
15 
16 //----------------------------------------------------------------------------
17 // Course
18 //----------------------------------------------------------------------------
19 
23 class Course : public Object, public AttAccidental, public AttNNumberLike, public AttOctave, public AttPitch {
24 public:
29  Course();
31  virtual ~Course();
32  Object *Clone() const override { return new Course(*this); }
33  void Reset() override;
34  std::string GetClassName() const override { return "course"; }
36 
40  bool IsSupportedChild(ClassId classId) override;
41 
42  //----------//
43  // Functors //
44  //----------//
45 
49  FunctorCode Accept(Functor &functor) override;
51  FunctorCode Accept(ConstFunctor &functor) const override;
52  FunctorCode AcceptEnd(Functor &functor) override;
53  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
55 
56 protected:
57  //
58 private:
59  //
60 public:
61  //
62 private:
63  //
64 };
65 
66 } // namespace vrv
67 
68 #endif
vrv::Course::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: course.h:32
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Course::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Course::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::Course
This class models the MEI <course> element.
Definition: course.h:23
vrv::Course::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element to a element.