Verovio
Source code documentation
label.h
1 // Name: label.h
3 // Author: Laurent Pugin
4 // Created: 19/06/2017
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_LABEL_H__
9 #define __VRV_LABEL_H__
10 
11 #include "object.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // Label
17 //----------------------------------------------------------------------------
18 
22 class Label : public Object, public TextListInterface {
23 
24 public:
29  Label();
31  virtual ~Label();
32  Object *Clone() const override { return new Label(*this); }
33  void Reset() override;
34  std::string GetClassName() const override { return "label"; }
36 
40  bool IsSupportedChild(ClassId classId) override;
43 
44  //----------//
45  // Functors //
46  //----------//
47 
51  FunctorCode Accept(Functor &functor) override;
53  FunctorCode Accept(ConstFunctor &functor) const override;
54  FunctorCode AcceptEnd(Functor &functor) override;
55  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
57 
58 private:
59  //
60 public:
61  //
62 private:
63  //
64 };
65 
66 } // namespace vrv
67 
68 #endif
vrv::Label::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: label.h:32
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Label::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::TextListInterface
This class is an pseudo interface for elements maintaining a flat list of children LayerElement for p...
Definition: object.h:972
vrv::Label::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::Label
This class models the MEI <label> element.
Definition: label.h:22
vrv::Label::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Base method for checking if a child can be added.