Verovio
Source code documentation
ref.h
1 // Name: ref.h
3 // Author: Laurent Pugin
4 // Created: 2018/02/21
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_REF_H__
9 #define __VRV_REF_H__
10 
11 #include "atts_shared.h"
12 #include "editorial.h"
13 
14 namespace vrv {
15 
16 //----------------------------------------------------------------------------
17 // Ref
18 //----------------------------------------------------------------------------
19 
23 class Ref : public EditorialElement {
24 public:
29  Ref();
31  virtual ~Ref();
32  Object *Clone() const override { return new Ref(*this); }
33  void Reset() override;
34  std::string GetClassName() const override { return "ref"; }
36 
37  //----------//
38  // Functors //
39  //----------//
40 
41 private:
42  //
43 public:
44  //
45 private:
46 };
47 
48 } // namespace vrv
49 
50 #endif
vrv::Ref::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Ref
This class models the MEI <ref> element.
Definition: ref.h:23
vrv::Ref::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: ref.h:32
vrv::EditorialElement
This class is a base class for the editorial element containing musical content, for example <rgd> or...
Definition: editorial.h:38