jsonhandler.h 240 B

123456789101112
  1. #ifndef JSONHANDLER_H
  2. #define JSONHANDLER_H
  3. #include "qmlhandler.h"
  4. #include <json/json.h>
  5. namespace JsonHandler {
  6. void setQmlHandler(QMLHandler *q);
  7. void parseJSON(std::string buffer);
  8. } // namespace JsonHandler
  9. #endif // JSONHANDLER_H