Verovio
Source code documentation
systemelement.h
1 // Name: systemelement.h
3 // Author: Laurent Pugin
4 // Created: 2016
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_SYSTEM_ELEMENT_H__
9 #define __VRV_SYSTEM_ELEMENT_H__
10 
11 #include "atts_shared.h"
12 #include "devicecontextbase.h"
13 #include "floatingobject.h"
14 
15 namespace vrv {
16 
17 //----------------------------------------------------------------------------
18 // SystemElement
19 //----------------------------------------------------------------------------
20 
25 class SystemElement : public FloatingObject, public AttTyped {
26 public:
31  SystemElement();
33  SystemElement(ClassId classId);
34  virtual ~SystemElement();
35  void Reset() override;
37 
38  //----------//
39  // Functors //
40  //----------//
41 
45  FunctorCode Accept(Functor &functor) override;
47  FunctorCode Accept(ConstFunctor &functor) const override;
48  FunctorCode AcceptEnd(Functor &functor) override;
49  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
51 
52 private:
53  //
54 public:
59  VisibilityType m_visibility;
60 
61 private:
62  //
63 };
64 
65 } // namespace vrv
66 
67 #endif
vrv::SystemElement
This class represents elements appearing within a measure.
Definition: systemelement.h:25
vrv::SystemElement::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::SystemElement::m_visibility
VisibilityType m_visibility
Holds the visibility (hidden or visible) for an system element.
Definition: systemelement.h:59
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::FloatingObject
This class represents elements appearing within a measure.
Definition: floatingobject.h:28
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::SystemElement::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.