27 lines
533 B
C++
27 lines
533 B
C++
#ifndef TOOLS_H
|
|
#define TOOLS_H
|
|
|
|
//#include "mainwindow.h"
|
|
#include <string>
|
|
#include <vector>
|
|
#include <array>
|
|
#include <QString>
|
|
#include <QMap>
|
|
#include <QTranslator>
|
|
#include <QProcess>
|
|
#include <QMimeDatabase>
|
|
#include <QMimeType>
|
|
|
|
using namespace std;
|
|
|
|
const vector<string> explode(const string& s, const char& c, int n);
|
|
|
|
FILE * popen2(array<string,8> argv, string type, int & pid);
|
|
|
|
int pclose2(FILE * fp, pid_t pid);
|
|
|
|
bool testRsyncReturn(MainWindow *, QProcess *);
|
|
QString getFileType(QString finename);
|
|
|
|
#endif // TOOLS_H
|