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:
include/tribufu++
AnyType.hApiClient.hApiConfiguration.hApiException.hHttpContent.hIHttpBody.hJsonBody.hModelBase.hMultipartFormData.hObject.h
api
model
Account.hApplication.hApplicationType.hAuthorizeRequest.hCodeChallengeMethod.hCryptoViewModel.hGame.hGameServer.hGameServerCluster.hGrantType.hGroup.hGroupGame.hGroupMember.hGroupRank.hHashViewModel.hIntrospectRequest.hIpAddress.hLeaderboardItem.hLeaderboardOrder.hLoginProvider.hLoginRequest.hLoginResponse.hPackage.hProfile.hProfileGame.hProfileGroup.hRefreshRequest.hRegisterRequest.hResponseType.hRevokeRequest.hSearchRequest.hSearchType.hServerMetrics.hServerStatus.hSubscription.hTokenHintType.hTokenRequest.hTokenResponse.hTokenType.hUpdateProfile.hUserInfo.hUserType.h
scripts
src
AnyType.cppApiClient.cppApiConfiguration.cppApiException.cppHttpContent.cppJsonBody.cppModelBase.cppMultipartFormData.cppObject.cpp
api
model
Account.cppApplication.cppApplicationType.cppAuthorizeRequest.cppCodeChallengeMethod.cppCryptoViewModel.cppGame.cppGameServer.cppGameServerCluster.cppGrantType.cppGroup.cppGroupGame.cppGroupMember.cppGroupRank.cppHashViewModel.cppIntrospectRequest.cppIpAddress.cppLeaderboardItem.cppLeaderboardOrder.cppLoginProvider.cppLoginRequest.cppLoginResponse.cppPackage.cppProfile.cppProfileGame.cppProfileGroup.cppRefreshRequest.cppRegisterRequest.cppResponseType.cppRevokeRequest.cppSearchRequest.cppSearchType.cppServerMetrics.cppServerStatus.cppSubscription.cppTokenHintType.cppTokenRequest.cppTokenResponse.cppTokenType.cppUpdateProfile.cppUserInfo.cppUserType.cpp
@ -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_ */
|
||||
|
Reference in New Issue
Block a user