##// END OF EJS Templates
Init
kaveh -
r0:0630ec60beb0 default
parent child
Show More
@@ -0,0 +1,2
1 syntax: glob
2 *.user
@@ -0,0 +1,1
1 src/lppserial = https://hephaistos.lpp.polytechnique.fr/rhodecode/HG_REPOSITORIES/LPP/INSTRUMENTATION/lppserial
@@ -0,0 +1,1
1 0000000000000000000000000000000000000000 src/lppserial
@@ -0,0 +1,22
1 #-------------------------------------------------
2 #
3 # Project created by QtCreator 2014-04-24T18:30:27
4 #
5 #-------------------------------------------------
6
7 QT += core gui
8
9 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
10
11 TARGET = Uprobe
12 TEMPLATE = app
13
14
15 SOURCES += main.cpp\
16 mainwindow.cpp \
17 src/uprobe.cpp
18
19 HEADERS += mainwindow.h \
20 src/uprobe.h
21
22 FORMS += mainwindow.ui
@@ -0,0 +1,11
1 #include "mainwindow.h"
2 #include <QApplication>
3
4 int main(int argc, char *argv[])
5 {
6 QApplication a(argc, argv);
7 MainWindow w;
8 w.show();
9
10 return a.exec();
11 }
@@ -0,0 +1,14
1 #include "mainwindow.h"
2 #include "ui_mainwindow.h"
3
4 MainWindow::MainWindow(QWidget *parent) :
5 QMainWindow(parent),
6 ui(new Ui::MainWindow)
7 {
8 ui->setupUi(this);
9 }
10
11 MainWindow::~MainWindow()
12 {
13 delete ui;
14 }
@@ -0,0 +1,22
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3
4 #include <QMainWindow>
5
6 namespace Ui {
7 class MainWindow;
8 }
9
10 class MainWindow : public QMainWindow
11 {
12 Q_OBJECT
13
14 public:
15 explicit MainWindow(QWidget *parent = 0);
16 ~MainWindow();
17
18 private:
19 Ui::MainWindow *ui;
20 };
21
22 #endif // MAINWINDOW_H
@@ -0,0 +1,24
1 <ui version="4.0">
2 <class>MainWindow</class>
3 <widget class="QMainWindow" name="MainWindow" >
4 <property name="geometry" >
5 <rect>
6 <x>0</x>
7 <y>0</y>
8 <width>400</width>
9 <height>300</height>
10 </rect>
11 </property>
12 <property name="windowTitle" >
13 <string>MainWindow</string>
14 </property>
15 <widget class="QMenuBar" name="menuBar" />
16 <widget class="QToolBar" name="mainToolBar" />
17 <widget class="QWidget" name="centralWidget" />
18 <widget class="QStatusBar" name="statusBar" />
19 </widget>
20 <layoutDefault spacing="6" margin="11" />
21 <pixmapfunction></pixmapfunction>
22 <resources/>
23 <connections/>
24 </ui>
@@ -0,0 +1,6
1 #include "uprobe.h"
2
3 UProbe::UProbe(QObject *parent) :
4 QObject(parent)
5 {
6 }
@@ -0,0 +1,18
1 #ifndef UPROBE_H
2 #define UPROBE_H
3
4 #include <QObject>
5
6 class UProbe : public QObject
7 {
8 Q_OBJECT
9 public:
10 explicit UProbe(QObject *parent = 0);
11
12 signals:
13
14 public slots:
15
16 };
17
18 #endif // UPROBE_H
General Comments 0
You need to be logged in to leave comments. Login now