Verovio
Source code documentation
symboltable.h
1 // Name: symboltable.h
3 // Author: Laurent Pugin
4 // Created: 2022
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_SYMBOLTABLE_H__
9 #define __VRV_SYMBOLTABLE_H__
10 
11 #include "atts_shared.h"
12 #include "object.h"
13 
14 namespace vrv {
15 
16 //----------------------------------------------------------------------------
17 // SymbolTable
18 //----------------------------------------------------------------------------
19 
20 class SymbolTable : public Object {
21 public:
26  SymbolTable();
28  virtual ~SymbolTable();
29  void Reset() override;
30  std::string GetClassName() const override { return "symbolTable"; }
32 
36  bool IsSupportedChild(ClassId classId) override;
39 
44  Object *Clone() const override { return NULL; }
45 
46 private:
47  //
48 public:
49  //
50 private:
51  //
52 };
53 
54 } // namespace vrv
55 
56 #endif
vrv::SymbolTable::Clone
Object * Clone() const override
Disable cloning of the symboleTable (for now?).
Definition: symboltable.h:44
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::SymbolTable::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::SymbolTable
Definition: symboltable.h:20
vrv::SymbolTable::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Base method for checking if a child can be added.