/* * 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_ */