##// END OF EJS Templates
Class "bridge" added
leroy -
r4:73b8297d6390 default
parent child
Show More
@@ -0,0 +1,6
1 #include "bridge.h"
2
3 bridge::bridge(QWidget *parent) :
4 QWidget(parent)
5 {
6 }
@@ -0,0 +1,18
1 #ifndef BRIDGE_H
2 #define BRIDGE_H
3
4 #include <QWidget>
5
6 class bridge : public QWidget
7 {
8 Q_OBJECT
9 public:
10 explicit bridge(QWidget *parent = 0);
11
12 signals:
13
14 public slots:
15
16 };
17
18 #endif // BRIDGE_H
General Comments 0
You need to be logged in to leave comments. Login now