16 lines
311 B
C++
16 lines
311 B
C++
#pragma once
|
|
|
|
#include <QMainWindow>
|
|
#include "src/cpp/core/NodeWidget/nodewidget.h"
|
|
#include <QEvent>
|
|
|
|
class NMainWindow: public QMainWindow, public NodeWidget
|
|
{
|
|
Q_OBJECT
|
|
NODEWIDGET_IMPLEMENTATIONS(QMainWindow)
|
|
public:
|
|
using QMainWindow::QMainWindow; //inherit all constructors of QMainWindow
|
|
};
|
|
|
|
|