broke classes into their own files
This commit is contained in:
21
src/loaders/JLoader.h
Normal file
21
src/loaders/JLoader.h
Normal file
@@ -0,0 +1,21 @@
|
||||
//
|
||||
// Created by phanes on 4/22/17.
|
||||
//
|
||||
|
||||
#ifndef FTESTS_JLOADER_H
|
||||
#define FTESTS_JLOADER_H
|
||||
#include "../json/json.h"
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
#include <cstdlib>
|
||||
|
||||
|
||||
class JLoader
|
||||
{
|
||||
private:
|
||||
Json::Value json_root;
|
||||
public:
|
||||
JLoader( std::string filename );
|
||||
Json::Value get_root();
|
||||
};
|
||||
#endif //FTESTS_JLOADER_H
|
||||
Reference in New Issue
Block a user