All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cpp-tiny.service.Response.h.mustache Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
#ifndef TINY_CPP_CLIENT_RESPONSE_H_
#define TINY_CPP_CLIENT_RESPONSE_H_
#include 

namespace Tiny {

/**
*  Class
* Generated with openapi::tiny-cpp-client
*/
template 
    class Response {
    public:

    Response(T _obj, int _code){
        obj = _obj;
        code = _code;
    }

    int code;
    T obj;
    };
    } // namespace Tinyclient

#endif /* TINY_CPP_CLIENT_RESPONSE_H_ */




© 2015 - 2024 Weber Informatics LLC | Privacy Policy