https://github.com/xbpeng/DeepTerrainRL
Raw File
Tip revision: ed82e2ebe5f14fa875cc3d0a2180c64980408e8f authored by Glen on 19 October 2016, 17:49:36 UTC
Update README.md
Tip revision: ed82e2e
JsonUtil.h
#pragma once

#include <string>
#include <json/json.h>
#include "util/MathUtil.h"

class cJsonUtil
{
public:
	static std::string BuildVectorJson(const Eigen::VectorXd& vec);
	static bool ReadVectorJson(const Json::Value& root, Eigen::VectorXd& out_vec);

private:
	
};
back to top