Verovio
Source code documentation
f.h
1 // Name: f.h
3 // Author: Laurent Pugin
4 // Created: 2018
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_F_H__
9 #define __VRV_F_H__
10 
11 #include "atts_shared.h"
12 #include "textelement.h"
13 #include "timeinterface.h"
14 
15 namespace vrv {
16 
17 //----------------------------------------------------------------------------
18 // F (figure)
19 //----------------------------------------------------------------------------
20 
24 class F : public TextElement, public TimeSpanningInterface, public AttExtender {
25 public:
30  F();
32  virtual ~F();
33  Object *Clone() const override { return new F(*this); }
34  void Reset() override;
35  std::string GetClassName() const override { return "f"; }
37 
41  TimePointInterface *GetTimePointInterface() override { return vrv_cast<TimePointInterface *>(this); }
43  const TimePointInterface *GetTimePointInterface() const override
44  {
45  return vrv_cast<const TimePointInterface *>(this);
46  }
47  TimeSpanningInterface *GetTimeSpanningInterface() override { return vrv_cast<TimeSpanningInterface *>(this); }
48  const TimeSpanningInterface *GetTimeSpanningInterface() const override
49  {
50  return vrv_cast<const TimeSpanningInterface *>(this);
51  }
53 
58  bool IsSupportedChild(ClassId classId) override;
59 
60  //----------//
61  // Functors //
62  //----------//
63 
67  FunctorCode Accept(Functor &functor) override;
69  FunctorCode Accept(ConstFunctor &functor) const override;
70  FunctorCode AcceptEnd(Functor &functor) override;
71  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
73 
74 private:
75  //
76 public:
77  //
78 protected:
79 private:
80 };
81 
82 } // namespace vrv
83 
84 #endif
vrv::F::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element (text, rend.
vrv::F
This class models the MEI <f> element.
Definition: f.h:24
vrv::F::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::TextElement
Definition: textelement.h:22
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::F::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::TimeSpanningInterface
This class is an interface for spanning elements, such as slur, hairpin, etc.
Definition: timeinterface.h:141
vrv::F::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: f.h:33