summaryrefslogtreecommitdiff
path: root/tests/designer/gotoslot_insertIntoCorrectClass_pointer_ns_using/form.cpp
blob: 449bda3749815061ef4bd591f6d015149f6f5594 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright header

#include "form.h"
#include "ui_form.h"

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

Form::~Form()
{
    delete ui;
}