Verovio
Source code documentation
iovolpiano.h
1 // Name: iovolpiano.h
3 // Author: Laurent Pugin
4 // Created: 2024
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_IOVOLPIANO_H__
9 #define __VRV_IOVOLPIANO_H__
10 
11 #include <string>
12 #include <vector>
13 
14 //----------------------------------------------------------------------------
15 
16 #include "iobase.h"
17 #include "pugixml.hpp"
18 #include "vrvdef.h"
19 
20 namespace vrv {
21 
22 //----------------------------------------------------------------------------
23 // VolpianoInput
24 //----------------------------------------------------------------------------
25 
26 class VolpianoInput : public Input {
27 public:
28  // constructors and destructors
29  VolpianoInput(Doc *doc);
30  virtual ~VolpianoInput();
31 
32  bool Import(const std::string &volpiano) override;
33 
34 private:
35  //
36 public:
37  //
38 private:
39  //
40 };
41 
42 } // namespace vrv
43 
44 #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::Input
This class is a base class for input classes.
Definition: iobase.h:63
vrv::VolpianoInput
Definition: iovolpiano.h:26