DRDE/AusRegCliever/include/mdJSON.hpp
Ren RenJuan 3bdafc2a41 *
2014-01-28 19:23:02 +00:00

24 lines
296 B
C++

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