Verovio
Source code documentation
instrdef.h
1 // Name: instrdef.h
3 // Author: Klaus Rettinghaus
4 // Created: 2018
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_INSTRDEF_H__
9 #define __VRV_INSTRDEF_H__
10 
11 #include "atts_midi.h"
12 #include "atts_shared.h"
13 #include "object.h"
14 
15 namespace vrv {
16 
17 //----------------------------------------------------------------------------
18 // InstrDef
19 //----------------------------------------------------------------------------
20 
24 class InstrDef : public Object,
25  public AttChannelized,
26  public AttLabelled,
27  public AttMidiInstrument,
28  public AttNNumberLike {
29 
30 public:
35  InstrDef();
37  virtual ~InstrDef();
38  Object *Clone() const override { return new InstrDef(*this); }
39  void Reset() override;
40  std::string GetClassName() const override { return "instrDef"; }
42 
43  //----------//
44  // Functors //
45  //----------//
46 
50  FunctorCode Accept(Functor &functor) override;
52  FunctorCode Accept(ConstFunctor &functor) const override;
53  FunctorCode AcceptEnd(Functor &functor) override;
54  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
56 
57 private:
58  //
59 public:
60  //
61 private:
62  //
63 };
64 
65 } // namespace vrv
66 
67 #endif
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::InstrDef::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::InstrDef::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::InstrDef
This class models the MEI <instrDef> element.
Definition: instrdef.h:24
vrv::InstrDef::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: instrdef.h:38