nodeguy/src/cpp/include/nodegui/QtWidgets/QGridLayout/ngridlayout.hpp
Atul R 6ac7303e16
Adds automatic test and linting on pull requests for nodegui (#215)
* adds test action

* make c++11 mandatory

* fix

* fix

* fix broken tests in windows

* upgrade qode to 1.0.6

* Fixes recursive hell for layouts

* adds cross env for windows

* change to pull request
2019-11-22 23:43:54 +01:00

12 lines
242 B
C++

#pragma once
#include <QGridLayout>
#include "core/Events/eventwidget_macro.h"
class NGridLayout : public QGridLayout, public EventWidget {
public:
Q_OBJECT
EVENTWIDGET_IMPLEMENTATIONS(QGridLayout)
using QGridLayout::QGridLayout;
};