Verovio
Source code documentation
choice.h
1 // Name: choice.h
3 // Author: Laurent Pugin
4 // Created: 2018
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_CHOICE_H__
9 #define __VRV_CHOICE_H__
10 
11 #include "atts_shared.h"
12 #include "editorial.h"
13 
14 namespace vrv {
15 
16 //----------------------------------------------------------------------------
17 // Choice
18 //----------------------------------------------------------------------------
19 
20 class Choice : public EditorialElement {
21 public:
26  Choice();
28  Choice(EditorialLevel level);
29  Object *Clone() const override { return new Choice(*this); }
30  virtual ~Choice();
31  void Reset() override;
32  std::string GetClassName() const override { return "choice"; }
34 
36  EditorialLevel GetLevel() const { return m_level; }
37 
41  bool IsSupportedChild(ClassId classId) override;
42 
43 protected:
45  EditorialLevel m_level;
46 
47 private:
48  //
49 public:
50  //
51 private:
52 };
53 
54 } // namespace vrv
55 
56 #endif
vrv::Choice::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::Choice::GetLevel
EditorialLevel GetLevel() const
Getter for level.
Definition: choice.h:36
vrv::Choice::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add children to a apparatus.
vrv::EditorialElement
This class is a base class for the editorial element containing musical content, for example <rgd> or...
Definition: editorial.h:38
vrv::Choice
Definition: choice.h:20
vrv::Choice::m_level
EditorialLevel m_level
We store the level of the <choice> for integrity check.
Definition: choice.h:45
vrv::Choice::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: choice.h:29