#include "RT.hpp" template<> json toJSON(String &v) { return json(v); } template<> json toJSON(Float &v) { return json(v); } template<> json toJSON(bool &v) { return json(v); } template<> json toJSON(int &v) { return json(v); } template<> json toJSON(unsigned int &v) { return json(v); } template<> String fromJSON(W v, json &obj) { return obj.get(); } template<> Float fromJSON(W v, json &obj) { return obj.get(); } template<> bool fromJSON(W v, json &obj) { return obj.get(); } template<> int fromJSON(W v, json &obj) { return obj.get(); } template<> unsigned int fromJSON(W v, json &obj) { return obj.get(); }