Verovio
Source code documentation
mrest.h
1 // Name: mrest.h
3 // Author: Rodolfo Zitellini
4 // Created: 2013
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_MREST_H__
9 #define __VRV_MREST_H__
10 
11 #include "atts_shared.h"
12 #include "layerelement.h"
13 #include "positioninterface.h"
14 
15 namespace vrv {
16 
17 class Layer;
18 class Staff;
19 
20 //----------------------------------------------------------------------------
21 // MRest
22 //----------------------------------------------------------------------------
23 
27 class MRest : public LayerElement,
28  public PositionInterface,
29  public AttColor,
30  public AttCue,
31  public AttFermataPresent,
32  public AttVisibility {
33 public:
38  MRest();
40  virtual ~MRest();
41  Object *Clone() const override { return new MRest(*this); }
42  void Reset() override;
43  std::string GetClassName() const override { return "mRest"; }
45 
49  PositionInterface *GetPositionInterface() override { return vrv_cast<PositionInterface *>(this); }
51  const PositionInterface *GetPositionInterface() const override { return vrv_cast<const PositionInterface *>(this); }
53 
57  int GetOptimalLayerLocation(const Layer *layer, int defaultLocation) const;
58 
59  //----------//
60  // Functors //
61  //----------//
62 
66  FunctorCode Accept(Functor &functor) override;
68  FunctorCode Accept(ConstFunctor &functor) const override;
69  FunctorCode AcceptEnd(Functor &functor) override;
70  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
72 
73 private:
74  //
75 public:
76  //
77 private:
78 };
79 
80 } // namespace vrv
81 
82 #endif
vrv::MRest::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::PositionInterface
This class is an interface for elements with a position on the staff, such as rests.
Definition: positioninterface.h:30
vrv::MRest::Reset
void Reset() override
Virtual reset method.
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::MRest::GetOptimalLayerLocation
int GetOptimalLayerLocation(const Layer *layer, int defaultLocation) const
Get the vertical location for mRest considering other layer elements.
vrv::MRest::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: mrest.h:41
vrv::MRest
This class models the MEI <mRest> element.
Definition: mrest.h:27
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46