2
0
mirror of https://github.com/tribufu/sdk-cpp synced 2025-06-22 00:04:38 +00:00

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
include/tribufu++
scripts
src

@ -19,21 +19,24 @@
#ifndef TRIBUFU_MODELS_IHttpBody_H_
#define TRIBUFU_MODELS_IHttpBody_H_
#include <iostream>
namespace tribufu {
namespace models {
class IHttpBody
namespace tribufu
{
public:
virtual ~IHttpBody() { }
namespace models
{
virtual void writeTo( std::ostream& stream ) = 0;
};
class IHttpBody
{
public:
virtual ~IHttpBody()
{
}
}
virtual void writeTo(std::ostream &stream) = 0;
};
}
}
#endif /* TRIBUFU_MODELS_IHttpBody_H_ */