├── .dockerignore ├── .gitignore ├── CMakeLists.txt ├── Dockerfile ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── src ├── App.cpp ├── AsyncExample.cpp ├── AsyncExample.hpp ├── DemoApiClient.hpp ├── DemoApiModels.hpp └── SimpleExample.hpp ├── test └── tests.cpp └── utility └── install-oatpp-modules.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | build/ 2 | Dockerfile 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oatpp/example-api-client/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oatpp/example-api-client/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oatpp/example-api-client/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oatpp/example-api-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oatpp/example-api-client/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oatpp/example-api-client/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /src/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oatpp/example-api-client/HEAD/src/App.cpp -------------------------------------------------------------------------------- /src/AsyncExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oatpp/example-api-client/HEAD/src/AsyncExample.cpp -------------------------------------------------------------------------------- /src/AsyncExample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oatpp/example-api-client/HEAD/src/AsyncExample.hpp -------------------------------------------------------------------------------- /src/DemoApiClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oatpp/example-api-client/HEAD/src/DemoApiClient.hpp -------------------------------------------------------------------------------- /src/DemoApiModels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oatpp/example-api-client/HEAD/src/DemoApiModels.hpp -------------------------------------------------------------------------------- /src/SimpleExample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oatpp/example-api-client/HEAD/src/SimpleExample.hpp -------------------------------------------------------------------------------- /test/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oatpp/example-api-client/HEAD/test/tests.cpp -------------------------------------------------------------------------------- /utility/install-oatpp-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oatpp/example-api-client/HEAD/utility/install-oatpp-modules.sh --------------------------------------------------------------------------------