Verovio
Source code documentation
mrpt2.h
1 // Name: mrpt2.h
3 // Author: Klaus Rettinghaus
4 // Created: 2018
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_MRPT2_H__
9 #define __VRV_MRPT2_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 // MRpt2 (2-measure repeat)
21 //----------------------------------------------------------------------------
22 
26 class MRpt2 : public LayerElement, public AttColor {
27 public:
32  MRpt2();
34  virtual ~MRpt2();
35  Object *Clone() const override { return new MRpt2(*this); }
36  void Reset() override;
37  std::string GetClassName() const override { return "mRpt2"; }
39 
43  FunctorCode Accept(Functor &functor) override;
45  FunctorCode Accept(ConstFunctor &functor) const override;
46  FunctorCode AcceptEnd(Functor &functor) override;
47  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
49 
50 private:
51  //
52 public:
53  //
54 private:
55 };
56 
57 } // namespace vrv
58 
59 #endif
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::MRpt2::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: mrpt2.h:35
vrv::MRpt2::Reset
void Reset() override
Virtual reset method.
vrv::MRpt2
This class models the MEI <mRpt2> element.
Definition: mrpt2.h:26
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::MRpt2::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.