Verovio
Source code documentation
interface.h
1 // Name: interface.h
3 // Author: Laurent Pugin
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_INTERFACE_H__
9 #define __VRV_INTERFACE_H__
10 
11 #include <string>
12 
13 //----------------------------------------------------------------------------
14 
15 #include "vrvdef.h"
16 
17 namespace vrv {
18 
19 class Object;
20 
21 //----------------------------------------------------------------------------
22 // Interface
23 //----------------------------------------------------------------------------
24 
32 class Interface {
33 
34 public:
39  Interface() {}
41  virtual ~Interface() {}
43 
47  void RegisterInterfaceAttClass(AttClassId attClassId) { m_interfaceAttClasses.push_back(attClassId); }
48 
52  std::vector<AttClassId> *GetAttClasses() { return &m_interfaceAttClasses; }
53 
58  virtual void Reset() {}
59 
64  virtual InterfaceId IsInterface() const { return INTERFACE; }
65 
66 private:
70  std::vector<AttClassId> m_interfaceAttClasses;
71 };
72 
73 } // namespace vrv
74 
75 #endif
vrv::Interface
This is a base class for regrouping MEI att classes.
Definition: interface.h:32
vrv::Interface::GetAttClasses
std::vector< AttClassId > * GetAttClasses()
Method for obtaining a pointer to the attribute class vector of the interface.
Definition: interface.h:52
vrv::Interface::RegisterInterfaceAttClass
void RegisterInterfaceAttClass(AttClassId attClassId)
Method for registering an MEI att classes in the interface.
Definition: interface.h:47
vrv::Interface::Reset
virtual void Reset()
Virtual reset method.
Definition: interface.h:58
vrv::Interface::IsInterface
virtual InterfaceId IsInterface() const
Virtual method returning the InterfaceId of the interface.
Definition: interface.h:64