forked from loafle/openapi-generator-original
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
/**
|
|
* Swagger Petstore *_/ ' \" =end -- \\r\\n \\n \\r
|
|
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ *_/ ' \" =end --
|
|
*
|
|
* OpenAPI spec version: 1.0.0 *_/ ' \" =end -- \\r\\n \\n \\r
|
|
* Contact: apiteam@swagger.io *_/ ' \" =end -- \\r\\n \\n \\r
|
|
*
|
|
* NOTE: This class is auto generated by the swagger code generator program.
|
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
#ifndef ModelFactory_H_
|
|
#define ModelFactory_H_
|
|
|
|
|
|
#include "SWGReturn.h"
|
|
|
|
namespace Swagger {
|
|
inline void* create(QString type) {
|
|
if(QString("SWGReturn").compare(type) == 0) {
|
|
return new SWGReturn();
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
inline void* create(QString json, QString type) {
|
|
void* val = create(type);
|
|
if(val != nullptr) {
|
|
SWGObject* obj = static_cast<SWGObject*>(val);
|
|
return obj->fromJson(json);
|
|
}
|
|
if(type.startsWith("QString")) {
|
|
return new QString();
|
|
}
|
|
return nullptr;
|
|
}
|
|
} /* namespace Swagger */
|
|
|
|
#endif /* ModelFactory_H_ */
|