Verovio
Source code documentation
pb.h
1 // Name: pb.h
3 // Author: Klaus Rettinghaus
4 // Created: 2018
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_PB_H__
9 #define __VRV_PB_H__
10 
11 #include "atts_shared.h"
12 #include "facsimileinterface.h"
13 #include "systemelement.h"
14 
15 namespace vrv {
16 
17 //----------------------------------------------------------------------------
18 // Pb
19 //----------------------------------------------------------------------------
20 
25 class Pb : public SystemElement, public FacsimileInterface, public AttNNumberLike {
26 public:
31  Pb();
33  virtual ~Pb();
34  Object *Clone() const override { return new Pb(*this); }
35  void Reset() override;
36  std::string GetClassName() const override { return "pb"; }
38 
42  FacsimileInterface *GetFacsimileInterface() override { return vrv_cast<FacsimileInterface *>(this); }
44  const FacsimileInterface *GetFacsimileInterface() const override
45  {
46  return vrv_cast<const FacsimileInterface *>(this);
47  }
48 
49  //----------//
50  // Functors //
51  //----------//
52 
56  FunctorCode Accept(Functor &functor) override;
58  FunctorCode Accept(ConstFunctor &functor) const override;
59  FunctorCode AcceptEnd(Functor &functor) override;
60  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
62 
63 private:
64  //
65 public:
66  //
67 private:
68  //
69 };
70 
71 } // namespace vrv
72 
73 #endif
vrv::SystemElement
This class represents elements appearing within a measure.
Definition: systemelement.h:25
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Pb::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Pb
This class represents a MEI pb in score-based MEI.
Definition: pb.h:25
vrv::FacsimileInterface
Definition: facsimileinterface.h:27
vrv::Pb::Reset
void Reset() override
Virtual reset method.
vrv::Pb::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: pb.h:34