14 lines
321 B
C++
14 lines
321 B
C++
#pragma once
|
|
#include <QLayout>
|
|
|
|
#include "QtWidgets/QLayout/qlayout_macro.h"
|
|
#include "core/Events/eventwidget_macro.h"
|
|
|
|
class NLayout : public QLayout, public EventWidget {
|
|
Q_OBJECT
|
|
public:
|
|
EVENTWIDGET_IMPLEMENTATIONS(QLayout)
|
|
using QLayout::QLayout;
|
|
void connectSignalsToEventEmitter() { QLAYOUT_SIGNALS }
|
|
};
|