Verovio
Source code documentation
quilisma.h
1 // Name: quilisma.h
3 // Author: Klaus Rettinghaus
4 // Created: 2024
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_quilisma_H__
9 #define __VRV_quilisma_H__
10 
11 #include "atts_analytical.h"
12 #include "atts_shared.h"
13 #include "layerelement.h"
14 #include "pitchinterface.h"
15 #include "positioninterface.h"
16 
17 namespace vrv {
18 
19 //----------------------------------------------------------------------------
20 // quilisma
21 //----------------------------------------------------------------------------
22 
23 class Quilisma : public LayerElement, public PitchInterface, public PositionInterface, public AttColor {
24 public:
29  Quilisma();
31  virtual ~Quilisma();
32  Object *Clone() const override { return new Quilisma(*this); }
33  void Reset() override;
34  std::string GetClassName() const override { return "quilisma"; }
36 
40  PitchInterface *GetPitchInterface() override { return vrv_cast<PitchInterface *>(this); }
42  const PitchInterface *GetPitchInterface() const override { return vrv_cast<const PitchInterface *>(this); }
44 
46  bool HasToBeAligned() const override { return true; }
47 
48 private:
49  //
50 public:
51  //
52 private:
53 };
54 
55 } // namespace vrv
56 
57 #endif
vrv::PositionInterface
This class is an interface for elements with a position on the staff, such as rests.
Definition: positioninterface.h:30
vrv::Quilisma::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: quilisma.h:32
vrv::Quilisma
Definition: quilisma.h:23
vrv::Quilisma::HasToBeAligned
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: quilisma.h:46
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Quilisma::Reset
void Reset() override
Virtual reset method.
vrv::PitchInterface
This class is an interface for elements with pitch, such as notes and neumes.
Definition: pitchinterface.h:28
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46