Verovio
Source code documentation
editortoolkit_mensural.h
1 // Name: editortoolkit_cmn.h
3 // Author: Juliette Regimbal
4 // Created: 04/06/2019
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_EDITOR_TOOLKIT_MENSURAL_H__
9 #define __VRV_EDITOR_TOOLKIT_MENSURAL_H__
10 
11 #include <cmath>
12 #include <string>
13 #include <utility>
14 
15 //--------------------------------------------------------------------------------
16 
17 #include "doc.h"
18 #include "editortoolkit.h"
19 #include "view.h"
20 
21 #include "jsonxx.h"
22 
23 namespace vrv {
24 
25 //--------------------------------------------------------------------------------
26 // EditorToolkitMensural
27 //--------------------------------------------------------------------------------
28 
30 public:
31  EditorToolkitMensural(Doc *doc, View *view) : EditorToolkit(doc, view) {}
32  bool ParseEditorAction(const std::string &json_editorAction) { return false; }
33 
37 };
38 } // namespace vrv
39 
40 #endif
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::EditorToolkitMensural
Definition: editortoolkit_mensural.h:29
vrv::View
This class is a drawing context and corresponds to the view of a MVC design pattern.
Definition: view.h:105
vrv::EditorToolkit
Definition: editortoolkit.h:28
vrv::EditorToolkitMensural::ParseEditorAction
bool ParseEditorAction(const std::string &json_editorAction)
In child classes, this parses the provided editor action and then performs the correct action.
Definition: editortoolkit_mensural.h:32