Verovio
Source code documentation
plica.h
1 // Name: plica.h
3 // Author: Laurent Pugin
4 // Created: 2020
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_PLICA_H__
9 #define __VRV_PLICA_H__
10 
11 #include "atts_visual.h"
12 #include "layerelement.h"
13 
14 namespace vrv {
15 
16 //----------------------------------------------------------------------------
17 // Plica
18 //----------------------------------------------------------------------------
19 
20 class Plica : public LayerElement, public AttPlicaVis {
21 public:
26  Plica();
28  virtual ~Plica();
29  Object *Clone() const override { return new Plica(*this); }
30  void Reset() override;
31  std::string GetClassName() const override { return "plica"; }
32 
33  //----------//
34  // Functors //
35  //----------//
36 
40  FunctorCode Accept(Functor &functor) override;
42  FunctorCode Accept(ConstFunctor &functor) const override;
43  FunctorCode AcceptEnd(Functor &functor) override;
44  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
46 
47 private:
48  //
49 public:
50  //
51 private:
52 };
53 
54 } // namespace vrv
55 
56 #endif
vrv::Plica::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Plica
Definition: plica.h:20
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Plica::Reset
void Reset() override
Virtual reset method.
vrv::Plica::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: plica.h:29
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46