mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
26 lines
387 B
C++
26 lines
387 B
C++
#ifndef WFP_TEST_UTIL_JSON_DOC_HPP
|
|
#define WFP_TEST_UTIL_JSON_DOC_HPP
|
|
|
|
#include "webfuse_provider/impl/json/doc.h"
|
|
#include "webfuse_provider/impl/json/node.h"
|
|
|
|
#include <string>
|
|
|
|
namespace webfuse_test
|
|
{
|
|
|
|
class JsonDoc
|
|
{
|
|
public:
|
|
JsonDoc(std::string const & json);
|
|
~JsonDoc();
|
|
wfp_json const * root();
|
|
private:
|
|
std::string contents;
|
|
wfp_json_doc * doc;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|