Verovio
Source code documentation
orig.h
1 // Name: orig.h
3 // Author: Laurent Pugin
4 // Created: 2018
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ORIG_H__
9 #define __VRV_ORIG_H__
10 
11 #include "atts_shared.h"
12 #include "editorial.h"
13 
14 namespace vrv {
15 
16 //----------------------------------------------------------------------------
17 // Orig
18 //----------------------------------------------------------------------------
19 
20 class Orig : public EditorialElement, public AttSource {
21 public:
26  Orig();
28  virtual ~Orig();
29  Object *Clone() const override { return new Orig(*this); }
30  void Reset() override;
31  std::string GetClassName() const override { return "orig"; }
33 
34 private:
35  //
36 public:
37  //
38 private:
39 };
40 
41 } // namespace vrv
42 
43 #endif
vrv::Orig::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::Orig
Definition: orig.h:20
vrv::Orig::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: orig.h:29
vrv::EditorialElement
This class is a base class for the editorial element containing musical content, for example <rgd> or...
Definition: editorial.h:38