-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnewForm.h
38 lines (32 loc) · 798 Bytes
/
newForm.h
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
31
32
33
34
35
36
37
38
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: newForm.h
* Author: za
*
* Created on October 28, 2016, 7:15 AM
*/
#ifndef _NEWFORM_H
#define _NEWFORM_H
#include "ui_newForm.h"
class newForm : public QMainWindow {
Q_OBJECT
public:
newForm();
private:
Ui::newForm widget;
QString selectedFileName;
QString savedFileName;
const static QString PCD_FILTER;
const static QString PLY_FILTER;
const static QString SELECT_A_FILE;
private slots:
void onBtnBrowsePLYClicked();
void onBtnConvert2PCDClicked();
void onBtnBrowsePCDClicked();
void onBtnConvert2PLYClicked();
};
#endif /* _NEWFORM_H */