lokinet/libabyss/include/abyss/json.hpp

15 lines
207 B
C++
Raw Normal View History

#ifndef __ABYSS_JSON_JSON_HPP
#define __ABYSS_JSON_JSON_HPP
#include <rapidjson/document.h>
namespace abyss
{
namespace json
{
typedef rapidjson::Document Object;
}
} // namespace abyss
#endif