add cpprest and samples

This commit is contained in:
wing328
2016-06-14 16:33:50 +08:00
parent 12b16c1ff5
commit ecd80a3d70
62 changed files with 8609 additions and 2 deletions

View File

@@ -0,0 +1,38 @@
/*
* JsonBody.h
*
* This is a JSON http body which can be submitted via http
*/
#ifndef JsonBody_H_
#define JsonBody_H_
#include "IHttpBody.h"
#include <cpprest/json.h>
namespace io {
namespace swagger {
namespace client {
namespace model {
class JsonBody
: public IHttpBody
{
public:
JsonBody( const web::json::value& value );
virtual ~JsonBody();
void writeTo( std::ostream& target ) override;
protected:
web::json::value m_Json;
};
}
}
}
}
#endif /* JsonBody_H_ */