Last active
January 4, 2016 13:45
-
-
Save Osse/a8a60d92cefd18bf81e8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "testoverview.h" | |
#include "ui_testoverview.h" | |
#include <QWidget> | |
TestOverview::TestOverview(QWidget *parent) : QWidget(parent), ui(new Ui::TestOverviewClass) | |
{ | |
ui->setupUi(this); | |
} | |
/** @brief TestOverview::~TestOverview */ | |
TestOverview::~TestOverview() | |
{ | |
delete ui; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment