Verovio
Source code documentation
breath.h
1 // Name: breath.h
3 // Author: Klaus Rettinghaus
4 // Created: 2017
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_BREATH_H__
9 #define __VRV_BREATH_H__
10 
11 #include "atts_cmn.h"
12 #include "controlelement.h"
13 #include "timeinterface.h"
14 
15 namespace vrv {
16 
17 //----------------------------------------------------------------------------
18 // Breath
19 //----------------------------------------------------------------------------
20 
24 class Breath : public ControlElement, public TimePointInterface, public AttPlacementRelStaff {
25 public:
30  Breath();
32  virtual ~Breath();
33  Object *Clone() const override { return new Breath(*this); }
34  void Reset() override;
35  std::string GetClassName() const override { return "breath"; }
37 
41  TimePointInterface *GetTimePointInterface() override { return vrv_cast<TimePointInterface *>(this); }
43  const TimePointInterface *GetTimePointInterface() const override
44  {
45  return vrv_cast<const TimePointInterface *>(this);
46  }
48 
49  //----------//
50  // Functors //
51  //----------//
52 
56  FunctorCode Accept(Functor &functor) override;
58  FunctorCode Accept(ConstFunctor &functor) const override;
59  FunctorCode AcceptEnd(Functor &functor) override;
60  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
62 
63 protected:
64  //
65 private:
66  //
67 public:
68  //
69 private:
70  //
71 };
72 
73 } // namespace vrv
74 
75 #endif
vrv::Breath
This class models the MEI <breath> element.
Definition: breath.h:24
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Breath::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: breath.h:33
vrv::Breath::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::ControlElement
This class represents elements appearing within a measure.
Definition: controlelement.h:28
vrv::Breath::Reset
void Reset() override
Virtual reset method.
vrv::TimePointInterface
This class is an interface for elements having a single time point, such as tempo,...
Definition: timeinterface.h:35