Verovio
Source code documentation
pageelement.h
1 // Name: pageelement.h
3 // Author: Laurent Pugin
4 // Created: 2021
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_PAGE_ELEMENT_H__
9 #define __VRV_PAGE_ELEMENT_H__
10 
11 #include "atts_shared.h"
12 #include "devicecontextbase.h"
13 #include "floatingobject.h"
14 
15 namespace vrv {
16 
17 //----------------------------------------------------------------------------
18 // PageElement
19 //----------------------------------------------------------------------------
20 
25 class PageElement : public Object, public AttTyped {
26 public:
31  PageElement();
33  PageElement(ClassId classId);
34  virtual ~PageElement();
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:
55  //
56 private:
57  //
58 };
59 
60 } // namespace vrv
61 
62 #endif
vrv::PageElement::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::PageElement
This class represents elements appearing within a page.
Definition: pageelement.h:25
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::PageElement::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126