Verovio
Source code documentation
proport.h
1 // Name: proport.h
3 // Author: Donald Byrd
4 // Created: 2015
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_PROPORT_H__
9 #define __VRV_PROPORT_H__
10 
11 #include "atts_shared.h"
12 #include "layerelement.h"
13 
14 namespace vrv {
15 
16 //----------------------------------------------------------------------------
17 // Proport
18 //----------------------------------------------------------------------------
19 
23 class Proport : public LayerElement, public AttDurationRatio {
24 public:
29  Proport();
31  virtual ~Proport();
32  Object *Clone() const override { return new Proport(*this); }
33  void Reset() override;
34  std::string GetClassName() const override { return "proport"; }
36 
37  int GetCumulatedNum() const;
38  int GetCumulatedNumbase() const;
39 
40  void Cumulate(const Proport *proport);
41  void ResetCumulate();
42 
44  bool HasToBeAligned() const override { return true; }
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 private:
57  //
58 public:
59  //
60 private:
62  int m_cumulatedNum;
63  int m_cumulatedNumbase;
64 };
65 
66 } // namespace vrv
67 
68 #endif
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::Proport::Reset
void Reset() override
Virtual reset method.
vrv::Proport
This class models the MEI <proport> element.
Definition: proport.h:23
vrv::Proport::HasToBeAligned
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: proport.h:44
vrv::Proport::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: proport.h:32
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::Proport::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46