mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-06-21 16:20:51 +00:00
- Remove pointer usage in generated models - Use const reference wherever possible - Reuse same super class for Qt5 client and server - Support primitive return types for Qt5 client - Add const reference to API calls
36 lines
723 B
Plaintext
36 lines
723 B
Plaintext
QT += network
|
|
|
|
HEADERS += \
|
|
# Models
|
|
$${PWD}/OAIApiResponse.h \
|
|
$${PWD}/OAICategory.h \
|
|
$${PWD}/OAIOrder.h \
|
|
$${PWD}/OAIPet.h \
|
|
$${PWD}/OAITag.h \
|
|
$${PWD}/OAIUser.h \
|
|
# APIs
|
|
$${PWD}/OAIPetApi.h \
|
|
$${PWD}/OAIStoreApi.h \
|
|
$${PWD}/OAIUserApi.h \
|
|
# Others
|
|
$${PWD}/OAIHelpers.h \
|
|
$${PWD}/OAIHttpRequest.h \
|
|
$${PWD}/OAIObject.h
|
|
|
|
SOURCES += \
|
|
# Models
|
|
$${PWD}/OAIApiResponse.cpp \
|
|
$${PWD}/OAICategory.cpp \
|
|
$${PWD}/OAIOrder.cpp \
|
|
$${PWD}/OAIPet.cpp \
|
|
$${PWD}/OAITag.cpp \
|
|
$${PWD}/OAIUser.cpp \
|
|
# APIs
|
|
$${PWD}/OAIPetApi.cpp \
|
|
$${PWD}/OAIStoreApi.cpp \
|
|
$${PWD}/OAIUserApi.cpp \
|
|
# Others
|
|
$${PWD}/OAIHelpers.cpp \
|
|
$${PWD}/OAIHttpRequest.cpp
|
|
|