~marcustomlinson/net-cpp/fix_ppc_timeout-rtm

« back to all changes in this revision

Viewing changes to include/core/net/http/client.h

  • Committer: CI bot
  • Author(s): Pete Woods
  • Date: 2014-08-04 09:40:57 UTC
  • mfrom: (33.2.14 uri-builder)
  • Revision ID: ps-jenkins@lists.canonical.com-20140804094057-esrqihi9gjmx4zth
Add URI building API Fixes: 1328021
Approved by: Thomas Voß

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
{
32
32
namespace net
33
33
{
 
34
 
 
35
struct Uri;
 
36
 
34
37
namespace http
35
38
{
36
39
class ContentType;
95
98
    Client& operator=(const Client&) = delete;
96
99
    bool operator==(const Client&) const = delete;
97
100
 
 
101
    virtual std::string uri_to_string (const core::net::Uri& uri) const;
 
102
 
98
103
    /** @brief Percent-encodes the given string. */
99
104
    virtual std::string url_escape(const std::string& s) const = 0;
100
105