Skip to content

Instantly share code, notes, and snippets.

@Osse
Last active January 4, 2016 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Osse/a8a60d92cefd18bf81e8 to your computer and use it in GitHub Desktop.
Save Osse/a8a60d92cefd18bf81e8 to your computer and use it in GitHub Desktop.
#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