Skip to content

Commit

Permalink
adding the simulation tools widget
Browse files Browse the repository at this point in the history
  • Loading branch information
yasseerr committed Feb 6, 2020
1 parent 2cbee3c commit b736a2d
Show file tree
Hide file tree
Showing 7 changed files with 437 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Gui/simulationtoolswidget.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#include "simulationtoolswidget.h"
#include "ui_simulationtoolswidget.h"

SimulationToolsWidget::SimulationToolsWidget(QWidget *parent) :
QWidget(parent),
ui(new Ui::SimulationToolsWidget)
{
ui->setupUi(this);

}

SimulationToolsWidget::~SimulationToolsWidget()
{
delete ui;
}
22 changes: 22 additions & 0 deletions Gui/simulationtoolswidget.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#ifndef SIMULATIONTOOLSWIDGET_H
#define SIMULATIONTOOLSWIDGET_H

#include <QWidget>

namespace Ui {
class SimulationToolsWidget;
}

class SimulationToolsWidget : public QWidget
{
Q_OBJECT

public:
explicit SimulationToolsWidget(QWidget *parent = nullptr);
~SimulationToolsWidget();

private:
Ui::SimulationToolsWidget *ui;
};

#endif // SIMULATIONTOOLSWIDGET_H
Loading

0 comments on commit b736a2d

Please sign in to comment.