~bzoltan/kubuntu-packaging/decouple_cmake_plugin

« back to all changes in this revision

Viewing changes to tests/designer/gotoslot_withoutProject/form.h

  • Committer: Timo Jyrinki
  • Date: 2013-11-15 12:25:23 UTC
  • mfrom: (1.1.28)
  • Revision ID: timo.jyrinki@canonical.com-20131115122523-i2kyamsu4gs2mu1m
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright header
 
2
 
 
3
#ifndef FORM_H
 
4
#define FORM_H
 
5
 
 
6
#include <QWidget>
 
7
 
 
8
namespace Ui {
 
9
class Form;
 
10
}
 
11
 
 
12
class Form : public QWidget
 
13
{
 
14
    Q_OBJECT
 
15
 
 
16
public:
 
17
    explicit Form(QWidget *parent = 0);
 
18
    ~Form();
 
19
 
 
20
private:
 
21
    Ui::Form *ui;
 
22
};
 
23
 
 
24
#endif // FORM_H