Verovio
Source code documentation
gracegrp.h
1 // Name: gracegrp.h
3 // Author: Klaus Rettinghaus
4 // Created: 2018
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_GRACEGRP_H__
9 #define __VRV_GRACEGRP_H__
10 
11 #include "atts_cmn.h"
12 #include "layerelement.h"
13 
14 namespace vrv {
15 
16 //----------------------------------------------------------------------------
17 // GraceGrp
18 //----------------------------------------------------------------------------
19 
20 class GraceGrp : public LayerElement, public AttColor, public AttGraced, public AttGraceGrpLog {
21 public:
26  GraceGrp();
28  virtual ~GraceGrp();
29  Object *Clone() const override { return new GraceGrp(*this); }
30  void Reset() override;
31  std::string GetClassName() const override { return "graceGrp"; }
33 
37  bool IsSupportedChild(ClassId classId) override;
38 
39  //----------//
40  // Functors //
41  //----------//
42 
46  FunctorCode Accept(Functor &functor) override;
48  FunctorCode Accept(ConstFunctor &functor) const override;
49  FunctorCode AcceptEnd(Functor &functor) override;
50  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
52 
53 protected:
54  //
55 private:
56  //
57 public:
58  //
59 private:
60  //
61 };
62 
63 } // namespace vrv
64 
65 #endif
vrv::GraceGrp::Reset
void Reset() override
Virtual reset method.
vrv::GraceGrp::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::GraceGrp::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: gracegrp.h:29
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::GraceGrp::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add childElement to a element.
vrv::GraceGrp
Definition: gracegrp.h:20
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46