Schim
gheader.h
Go to the documentation of this file.
1 #ifndef GHEADER_H
3 #define GHEADER_H
4 
5 #include "gcompositeobject.h"
6 #include "model/header.h"
7 
8 #include <QVariant>
9 
13 class GHeader : public GCompositeObject
14 {
15 public:
16  // CONSTRUCTORS
17  explicit GHeader(Header *obj);
18 
19  // GETTERS
20  Header *get() override;
21  const Header *get() const override;
22 };
23 
24 #endif // GHEADER_H
Class representing a header for a sheet.
Definition: header.h:15
Object * obj
The object that is being wrapped.
Definition: gobject.h:177
A graphical object that wraps a CompositeObject.
Definition: gcompositeobject.h:11
Graphical object that wraps a Header.
Definition: gheader.h:13