Verovio
Source code documentation
mrpt.h
1 // Name: mrpt.h
3 // Author: Klaus Rettinghaus
4 // Created: 2018
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_MRPT_H__
9 #define __VRV_MRPT_H__
10 
11 #include "atts_cmn.h"
12 #include "atts_shared.h"
13 #include "atts_visual.h"
14 #include "beam.h"
15 #include "layerelement.h"
16 
17 namespace vrv {
18 
19 //----------------------------------------------------------------------------
20 // MRpt (measure repeat)
21 //----------------------------------------------------------------------------
22 
26 class MRpt : public LayerElement, public AttColor, public AttNumbered, public AttNumberPlacement {
27 public:
32  MRpt();
34  virtual ~MRpt();
35  Object *Clone() const override { return new MRpt(*this); }
36  void Reset() override;
37  std::string GetClassName() const override { return "mRpt"; }
39 
40  //----------//
41  // Functors //
42  //----------//
43 
47  FunctorCode Accept(Functor &functor) override;
49  FunctorCode Accept(ConstFunctor &functor) const override;
50  FunctorCode AcceptEnd(Functor &functor) override;
51  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
53 
54 private:
55  //
56 public:
59 
60 private:
61 };
62 
63 } // namespace vrv
64 
65 #endif
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::MRpt::m_drawingMeasureCount
int m_drawingMeasureCount
measure count
Definition: mrpt.h:58
vrv::MRpt::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: mrpt.h:35
vrv::MRpt
This class models the MEI <mRpt> element.
Definition: mrpt.h:26
vrv::MRpt::Reset
void Reset() override
Virtual reset method.
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::MRpt::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.