Schim
glinearobjectarray.h
1 #ifndef GLINEAROBJECTARRAY_H
2 #define GLINEAROBJECTARRAY_H
3 
4 #include "ui/objects/gcompositeobject.h"
5 #include "model/special/linearobjectarray.h"
6 
8 {
9 public:
11 
12  LinearObjectArray *get();
13  const LinearObjectArray *get() const;
14 
15  void reloadFromModel() override;
16  void applyToModel() override;
17 };
18 
19 #endif // GLINEAROBJECTARRAY_H
Definition: linearobjectarray.h:6
Object * obj
The object that is being wrapped.
Definition: gobject.h:177
A graphical object that wraps a CompositeObject.
Definition: gcompositeobject.h:11
void applyToModel() override
Apply changes to the underlying model object.
void reloadFromModel() override
Update the graphical representation to match the object from the model.
Definition: glinearobjectarray.h:7