Format c++ files on generation

This commit is contained in:
2025-05-28 15:37:13 -03:00
parent 11ab0e51c8
commit 4ce994a111
106 changed files with 32592 additions and 31280 deletions

View File

@ -19,28 +19,28 @@
#ifndef TRIBUFU_MODELS_JsonBody_H_
#define TRIBUFU_MODELS_JsonBody_H_
#include "tribufu++/IHttpBody.h"
#include <cpprest/json.h>
namespace tribufu {
namespace models {
class JsonBody
: public IHttpBody
namespace tribufu
{
public:
JsonBody( const web::json::value& value );
virtual ~JsonBody();
namespace models
{
void writeTo( std::ostream& target ) override;
class JsonBody : public IHttpBody
{
public:
JsonBody(const web::json::value &value);
virtual ~JsonBody();
protected:
web::json::value m_Json;
};
void writeTo(std::ostream &target) override;
}
protected:
web::json::value m_Json;
};
}
}
#endif /* TRIBUFU_MODELS_JsonBody_H_ */