DRDE/AusRegCliever/include/mdJSON.hpp

26 lines
323 B
C++

/*
* mdJSON.hpp
*
* Created on: Jan 28, 2014
* Author: jdaugherty
*/
#ifndef MDJSON_HPP_
#define MDJSON_HPP_
class mdJSON {
private:
static bool parsedOK;
std::string script;
public:
mdJSON(char *fileName);
~mdJSON();
bool run();
bool didParseOK();
};
#endif /* MDJSON_HPP_ */