summaryrefslogtreecommitdiff
path: root/tests/designer/gotoslot_insertIntoCorrectClass_pointer/form.h
blob: 3f5ddba57450e25d530ea199e40187fdb12fa29f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright header

#ifndef FORM_H
#define FORM_H

#include <QWidget>

namespace Ui {
class Form;
}

class Form;
struct MyClass
{
    Form *form;
};

class Form : public QWidget
{
    Q_OBJECT

public:
    explicit Form(QWidget *parent = 0);
    ~Form();

private:
    Ui::Form *ui;
};

#endif // FORM_H