Verovio
Source code documentation
section.h
1 // Name: section.h
3 // Author: Laurent Pugin
4 // Created: 24/08/2016
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_SECTION_H__
9 #define __VRV_SECTION_H__
10 
11 #include "atts_shared.h"
12 #include "atts_visual.h"
13 #include "systemelement.h"
14 #include "systemmilestone.h"
15 
16 namespace vrv {
17 
18 class Section;
19 
20 //----------------------------------------------------------------------------
21 // Section
22 //----------------------------------------------------------------------------
23 
28 class Section : public SystemElement, public SystemMilestoneInterface, public AttNNumberLike, public AttSectionVis {
29 public:
34  Section();
36  virtual ~Section();
37  Object *Clone() const override { return new Section(*this); }
38  void Reset() override;
39  std::string GetClassName() const override { return "section"; }
41 
45  bool IsSupportedChild(ClassId classId) override;
46 
47  //----------//
48  // Functors //
49  //----------//
50 
54  FunctorCode Accept(Functor &functor) override;
56  FunctorCode Accept(ConstFunctor &functor) const override;
57  FunctorCode AcceptEnd(Functor &functor) override;
58  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
60 
61 private:
62  //
63 public:
64  //
65 private:
66  //
67 };
68 
69 } // namespace vrv
70 
71 #endif
vrv::SystemMilestoneInterface
This class is an interface for container elements that have to be turned to milestones in a page-base...
Definition: systemmilestone.h:91
vrv::SystemElement
This class represents elements appearing within a measure.
Definition: systemelement.h:25
vrv::Section
This class represents a MEI section.
Definition: section.h:28
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Section::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Method for adding allowed content.
vrv::Section::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: section.h:37
vrv::Section::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.