Verovio
Source code documentation
space.h
1 // Name: space.h
3 // Author: Laurent Pugin
4 // Created: 2015
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_SPACE_H__
9 #define __VRV_SPACE_H__
10 
11 #include "durationinterface.h"
12 #include "layerelement.h"
13 
14 namespace vrv {
15 
16 //----------------------------------------------------------------------------
17 // Space
18 //----------------------------------------------------------------------------
19 
23 class Space : public LayerElement, public DurationInterface {
24 public:
29  Space();
31  virtual ~Space();
32  Object *Clone() const override { return new Space(*this); }
33  void Reset() override;
34  std::string GetClassName() const override { return "space"; }
36 
40  DurationInterface *GetDurationInterface() override { return vrv_cast<DurationInterface *>(this); }
42  const DurationInterface *GetDurationInterface() const override { return vrv_cast<const DurationInterface *>(this); }
44 
45  //----------//
46  // Functors //
47  //----------//
48 
52  FunctorCode Accept(Functor &functor) override;
54  FunctorCode Accept(ConstFunctor &functor) const override;
55  FunctorCode AcceptEnd(Functor &functor) override;
56  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
58 
59 private:
60  //
61 public:
62  //
63 private:
64 };
65 
66 } // namespace vrv
67 
68 #endif
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Space
This class models the MEI <space> element.
Definition: space.h:23
vrv::Space::Reset
void Reset() override
Virtual reset method.
vrv::Space::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: space.h:32
vrv::DurationInterface
This class is an interface for elements with duration, such as notes and rests.
Definition: durationinterface.h:31
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::Space::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.