Verovio
Source code documentation
multirest.h
1 // Name: multirest.h
3 // Author: Rodolfo Zitellini
4 // Created: 2013
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_MULTIREST_H__
9 #define __VRV_MULTIREST_H__
10 
11 #include "atts_cmn.h"
12 #include "atts_shared.h"
13 #include "atts_visual.h"
14 #include "layerelement.h"
15 #include "positioninterface.h"
16 
17 namespace vrv {
18 
19 //----------------------------------------------------------------------------
20 // MultiRest
21 //----------------------------------------------------------------------------
22 
26 class MultiRest : public LayerElement,
27  public PositionInterface,
28  public AttColor,
29  public AttMultiRestVis,
30  public AttNumbered,
31  public AttNumberPlacement,
32  public AttWidth {
33 public:
38  MultiRest();
40  virtual ~MultiRest();
41  Object *Clone() const override { return new MultiRest(*this); }
42  void Reset() override;
43  std::string GetClassName() const override { return "multiRest"; }
45 
49  bool UseBlockStyle(const Doc *doc) const;
50 
54  FunctorCode Accept(Functor &functor) override;
56  FunctorCode Accept(ConstFunctor &functor) const override;
57  FunctorCode AcceptEnd(Functor &functor) override;
58  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
60 
61 private:
62  //
63 public:
64  //
65 private:
66 };
67 
68 } // namespace vrv
69 
70 #endif
vrv::PositionInterface
This class is an interface for elements with a position on the staff, such as rests.
Definition: positioninterface.h:30
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::MultiRest::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::MultiRest::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: multirest.h:41
vrv::MultiRest::Reset
void Reset() override
Virtual reset method.
vrv::MultiRest
This class models the MEI <multiRest> element.
Definition: multirest.h:26
vrv::MultiRest::UseBlockStyle
bool UseBlockStyle(const Doc *doc) const
True if block style rendering applies.
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46