Verovio
Source code documentation
iobase.h
1 // Name: iobase.h
3 // Author: Laurent Pugin
4 // Created: 2012
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_IOBASE_H__
9 #define __VRV_IOBASE_H__
10 
11 #include <string>
12 #include <vector>
13 
14 //----------------------------------------------------------------------------
15 
16 #include "vrvdef.h"
17 
18 namespace vrv {
19 
20 class Doc;
21 class Object;
22 
23 //----------------------------------------------------------------------------
24 // Output
25 //----------------------------------------------------------------------------
26 
31 class Output {
32 public:
33  // constructors and destructors
34  Output(Doc *doc, std::string filename);
35  Output(Doc *doc);
36  Output() {}
37  virtual ~Output();
38 
42  virtual bool WriteObject(Object *object) { return true; }
43 
47  virtual bool WriteObjectEnd(Object *object) { return true; }
48 
49 public:
50  //
51 protected:
52  Doc *m_doc;
53 };
54 
55 //----------------------------------------------------------------------------
56 // Input
57 //----------------------------------------------------------------------------
58 
63 class Input {
64 public:
65  // constructors and destructors
66  Input(Doc *doc);
67  virtual ~Input();
68 
69  void SetOutputFormat(const std::string &format) { m_outformat = format; }
70  std::string GetOutputFormat() { return m_outformat; }
71 
72  // read
73  virtual bool Import(std::string const &data) { return true; }
74 
79  LayoutInformation GetLayoutInformation() { return m_layoutInformation; }
80 
81 private:
85  void Init();
86 
87 public:
88  //
89 
90 protected:
91  Doc *m_doc;
92 
98  LayoutInformation m_layoutInformation;
99 
100  std::string m_outformat = "mei";
101 };
102 
103 } // namespace vrv
104 
105 #endif
vrv::Output::WriteObject
virtual bool WriteObject(Object *object)
Dummy object method that must be overridden in child class.
Definition: iobase.h:42
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::GetLayoutInformation
LayoutInformation GetLayoutInformation()
Getter for layoutInformation flag that is set to true during import if layout information is found (a...
Definition: iobase.h:79
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Output
This class is a base class for output classes.
Definition: iobase.h:31
vrv::Input
This class is a base class for input classes.
Definition: iobase.h:63
vrv::Output::WriteObjectEnd
virtual bool WriteObjectEnd(Object *object)
Dummy object method that must be overridden in child class.
Definition: iobase.h:47
vrv::Input::m_layoutInformation
LayoutInformation m_layoutInformation
Indicates if we have layout information in the file loaded.
Definition: iobase.h:98