diff options
Diffstat (limited to 'parse_file.h')
-rw-r--r-- | parse_file.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/parse_file.h b/parse_file.h new file mode 100644 index 0000000..3ee8b0d --- /dev/null +++ b/parse_file.h @@ -0,0 +1,15 @@ +#ifndef PARSE_FILE_H +#define PARSE_FILE_H +#include <QFile> +#include <QDebug> +#include <QTextStream> + +class parse_file +{ +public: + parse_file(); + QString parse_user_data(QString option, QString split); + QString parse_csgo_data(QString option); +}; + +#endif // PARSE_FILE_H |