Map Matching
file.h
Go to the documentation of this file.
1 #ifndef FILE_H
2 #define FILE_H
3 
4 #include <QFile>
5 #include <QFileDialog>
6 #include <QString>
7 #include <QStringList>
8 //#include <string>
9 
13 class File {
14 public:
18  File();
19 
24  int splitPath(QString fileGlobalPath);
25 
30  int selectFilesToOpen(QString extensionFilter);
31 
35  int whereSave();
36 
41  int shp2csv(QString geometryType);
42 
47  virtual ~File() {}
48 
53  QStringList filePath;
54  QStringList fileName;
55  QStringList fileExtension;
57 };
58 
59 #endif // FILE_H
QStringList fileName
Definition: file.h:54
The File class.
Definition: file.h:13
int whereSave()
The UI to select the file&#39;s path to save.
Definition: file.cpp:48
File()
The File constructor.
Definition: file.cpp:3
QStringList filePath
Definition: file.h:53
QStringList fileExtension
Definition: file.h:55
int splitPath(QString fileGlobalPath)
The split function to split the path file to filePath, fileName, fileExtension attributes.
Definition: file.cpp:5
int shp2csv(QString geometryType)
The function to convert WGS84 ShapeFile(s) to Lambert 93 CSV(s)
Definition: file.cpp:59
virtual ~File()
The File destructor.
Definition: file.h:47
int selectFilesToOpen(QString extensionFilter)
The UI to select the file&#39;s path to open.
Definition: file.cpp:26