Verovio
Source code documentation
expansion.h
1 // Name: expansion.h
3 // Author: Klaus Rettinghaus
4 // Created: 22/02/2017
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_EXPANSION_H__
9 #define __VRV_EXPANSION_H__
10 
11 #include "atts_shared.h"
12 #include "plistinterface.h"
13 #include "systemelement.h"
14 
15 namespace vrv {
16 
17 class Expansion;
18 
19 //----------------------------------------------------------------------------
20 // Expansion
21 //----------------------------------------------------------------------------
22 
26 class Expansion : public SystemElement, public PlistInterface {
27 public:
32  Expansion();
34  virtual ~Expansion();
35  Object *Clone() const override { return new Expansion(*this); }
36  void Reset() override;
37  std::string GetClassName() const override { return "expansion"; }
39 
43  PlistInterface *GetPlistInterface() override { return vrv_cast<PlistInterface *>(this); }
45  const PlistInterface *GetPlistInterface() const override { return vrv_cast<const PlistInterface *>(this); }
47 
48  //----------//
49  // Functors //
50  //----------//
51 
55  FunctorCode Accept(Functor &functor) override;
57  FunctorCode Accept(ConstFunctor &functor) const override;
58  FunctorCode AcceptEnd(Functor &functor) override;
59  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
61 
62 protected:
63  //
64 private:
65  //
66 public:
67  //
68 private:
69  //
70 };
71 
72 } // namespace vrv
73 
74 #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::Expansion::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: expansion.h:35
vrv::Expansion::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::PlistInterface
This class is an interface for elements having a single time point, such as tempo,...
Definition: plistinterface.h:29
vrv::Expansion
This class represents a MEI expansion.
Definition: expansion.h:26
vrv::Expansion::Reset
void Reset() override
Virtual reset method.