DRDE/AusRegCliever/include/mdJSON.hpp

25 lines
296 B
C++
Raw Normal View History

2014-01-28 18:16:48 +00:00
/*
* mdJSON.hpp
*
* Created on: Jan 28, 2014
* Author: jdaugherty
*/
#ifndef MDJSON_HPP_
#define MDJSON_HPP_
class mdJSON {
private:
2014-01-28 19:23:02 +00:00
std::string path;
2014-01-28 18:16:48 +00:00
public:
2014-01-28 19:23:02 +00:00
mdJSON(char *fileName);
~mdJSON();
bool run(bool parseOnly);
2014-01-28 18:16:48 +00:00
};
#endif /* MDJSON_HPP_ */