first commit

This commit is contained in:
2023-01-07 12:44:45 +01:00
parent 1e9f40ec9b
commit a76f32ea30
12 changed files with 1419 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef TOOLS_H
#define TOOLS_H
#include <string>
#include <vector>
#include "mainwindow.h"
using namespace std;
const vector<string> explode(const string& s, const char& c, int n = 0);
FILE * popen2(char * command, string type, int & pid);
int pclose2(FILE * fp, pid_t pid);
#endif // TOOLS_H