This repository has been archived on 2020-12-30. You can view files and clone it, but cannot push or open issues or pull requests.
NetworkPacketComposer/mainwindow.h

24 lines
357 B
C++

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QList>
#include "editorelement.h"
#include "flowlayout.h"
class MainWindow : public QMainWindow
{
Q_OBJECT
private:
FlowLayout* centralLayout;
QWidget* editor;
QList<EditorElement*>* list;
public:
MainWindow(QWidget *parent = 0);
~MainWindow();
};
#endif // MAINWINDOW_H