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