* 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
12 lines
242 B
C++
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;
|
|
};
|