DRDE/AusRegCliever/include/mdJSON.hpp
Ren RenJuan 5df36b62f5 ^
2014-01-29 00:02:24 +00:00

29 lines
420 B
C++

/*
* mdJSON.hpp
*
* Created on: Jan 28, 2014
* Author: jdaugherty
*/
#ifndef MDJSON_HPP_
#define MDJSON_HPP_
class mdJSON {
private:
std::string path;
public:
bool fatal;
mdJSON (char *fileName);
~mdJSON();
bool parse();
bool didDie() {return fatal;}
void die(){ fatal = true;}
};
#endif /* MDJSON_HPP_ */