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/editorelement.h

29 lines
423 B
C++

#ifndef EDITORELEMENT_H
#define EDITORELEMENT_H
#include <QBoxLayout>
#include <QObject>
#include <QWidget>
#include <QtGui>
#include <QLineEdit>
#include <QLabel>
class EditorElement : public QWidget
{
Q_OBJECT
public:
explicit EditorElement(QWidget *parent = 0);
~EditorElement();
private:
QBoxLayout*layout;
QLabel * label;
QLabel * hint;
QLineEdit* edit;
signals:
public slots:
};
#endif // EDITORELEMENT_H