Verovio
Source code documentation
multirpt.h
1 // Name: multirpt.h
3 // Author: Klaus Rettinghaus
4 // Created: 2018
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_MULTIRPT_H__
9 #define __VRV_MULTIRPT_H__
10 
11 #include "atts_cmn.h"
12 #include "atts_shared.h"
13 #include "beam.h"
14 #include "layerelement.h"
15 
16 namespace vrv {
17 
18 //----------------------------------------------------------------------------
19 // MultiRpt (multiple repeat)
20 //----------------------------------------------------------------------------
21 
25 class MultiRpt : public LayerElement, public AttNumbered {
26 public:
31  MultiRpt();
33  virtual ~MultiRpt();
34  Object *Clone() const override { return new MultiRpt(*this); }
35  void Reset() override;
36  std::string GetClassName() const override { return "multiRpt"; }
38 
42  FunctorCode Accept(Functor &functor) override;
44  FunctorCode Accept(ConstFunctor &functor) const override;
45  FunctorCode AcceptEnd(Functor &functor) override;
46  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
48 
49 private:
50  //
51 public:
52  //
53 private:
54 };
55 
56 } // namespace vrv
57 
58 #endif
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::MultiRpt::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::MultiRpt::Reset
void Reset() override
Virtual reset method.
vrv::MultiRpt
This class models the MEI <multiRpt> element.
Definition: multirpt.h:25
vrv::MultiRpt::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: multirpt.h:34
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46