BigBlueBox
An Inventory Management System for a NYLT Course or other Boy Scout Programs
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Pages
jsonReader.h
Go to the documentation of this file.
1 //********************************************************************
2 // MARK FOR DELETE - OBSOLETE
3 //********************************************************************
4 #ifndef JSONREADER_H
5 #define JSONREADER_H
6 #include <QJsonDocument>
7 #include <QJsonObject>
8 #include <QJsonArray>
9 
10 #include <QFile>
11 #include <QString>
12 
13 #include "directoryhandler.h"
14 
16 {
17 private:
18  static QFile file;
19  static QString path;
20 public:
21  JSONReader();
22  ~JSONReader();
23  void setFilePath(QString path);
24  QString readJSON();
25 
26 };
27 
28 #endif // JSONREADER_H
QString readJSON()
Definition: jsonReader.h:15
static QFile file
Definition: jsonReader.h:18
static QString path
Definition: jsonReader.h:19
void setFilePath(QString path)