README 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. configure.in is a good example to add curlpp to your project
  2. Note that example 22 is contains the easiest and shorter examples of cURLpp
  3. usage.
  4. Example 01: This example is made to show you how you can use the Options.
  5. Example 02: an upload example.
  6. Example 03: verbose callback example.
  7. Example 04: GetInfo example.
  8. Example 05: Function functor for WriteFunction example.
  9. Example 06: Method functor for WriteFunction example.
  10. Example 07: Cookie interface example via getInfo.
  11. Demonstrates usage of Infos::CookieList which example04 did not.
  12. Example 08: verbose callback example, with exception safe handling.
  13. Example 09: verbose callback example, with exception safe handling,
  14. but without raiseException function.
  15. Example 10: Binded function functor for WriteFunction example.
  16. Example 11: Plain write function example.
  17. Example 12: HTTP POST example.
  18. Example 13: Simple Multi interface example.
  19. Example 14: Multi interface example with info function example.
  20. Example 15: Simple example for demonstrating the NoValueOptionTrait.
  21. (SslEngineDefault)
  22. Example 16: HTTP POST example with HTTP Authentification.
  23. Example 17: Binded method functor for WriteFunction example.
  24. Example 18: No longer available. This used to be a boost usage example, but it's no longer relevant since c++11.
  25. Example 19: Multipart/formdata HTTP POST example.
  26. Example 20: std::ostream usage.
  27. Example 21: upload example with std::istream.
  28. Example 22: Real easy and quick examples.
  29. Example 23: Setting request options using iterators to custom container
  30. of curlpp options.
  31. Example 24: Binded method functor for DebugFunction example.