/*************************************************************************************************** ** Licence : This software is owned by Marport France. It cannot be used, duplicated or disclosed ** in full or in part without the written authorization of the owner. ** ** Author: Hugh ** Date: 18/12/2019 12 2019 ***************************************************************************************************/ #ifndef WIDGET_H #define WIDGET_H #include #include class Widget : public QWidget { Q_OBJECT public: Widget(QWidget *parent = nullptr); void paintEvent(QPaintEvent *event) override; ~Widget(); QSvgRenderer* m_renderer; }; #endif // WIDGET_H