Verovio
Source code documentation
gliss.h
1 // Name: gliss.h
3 // Author: Klaus Rettinghaus
4 // Created: 2020
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_GLISS_H__
9 #define __VRV_GLISS_H__
10 
11 #include "atts_cmn.h"
12 #include "controlelement.h"
13 #include "timeinterface.h"
14 
15 namespace vrv {
16 
17 //----------------------------------------------------------------------------
18 // Gliss
19 //----------------------------------------------------------------------------
20 
24 class Gliss : public ControlElement,
25  public TimeSpanningInterface,
26  public AttLineRend,
27  public AttLineRendBase,
28  public AttNNumberLike {
29 public:
34  Gliss();
36  virtual ~Gliss();
37  Object *Clone() const override { return new Gliss(*this); }
38  void Reset() override;
39  std::string GetClassName() const override { return "gliss"; }
41 
45  TimePointInterface *GetTimePointInterface() override { return vrv_cast<TimePointInterface *>(this); }
47  const TimePointInterface *GetTimePointInterface() const override
48  {
49  return vrv_cast<const TimePointInterface *>(this);
50  }
51  TimeSpanningInterface *GetTimeSpanningInterface() override { return vrv_cast<TimeSpanningInterface *>(this); }
52  const TimeSpanningInterface *GetTimeSpanningInterface() const override
53  {
54  return vrv_cast<const TimeSpanningInterface *>(this);
55  }
57 
58  //----------//
59  // Functors //
60  //----------//
61 
65  FunctorCode Accept(Functor &functor) override;
67  FunctorCode Accept(ConstFunctor &functor) const override;
68  FunctorCode AcceptEnd(Functor &functor) override;
69  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
71 
72 protected:
73  //
74 private:
75  //
76 public:
77  //
78 private:
79 };
80 
81 } // namespace vrv
82 
83 #endif
vrv::Gliss::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Gliss::Reset
void Reset() override
Virtual reset method.
vrv::Gliss
This class models the MEI <gliss> element.
Definition: gliss.h:24
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::Gliss::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: gliss.h:37