From 7e67335a970c3b5c484a6505a8d25500deb70e8c Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Mon, 14 Sep 2015 10:25:02 +0200 Subject: [PATCH] added comments regarding encoding/decoding to getPath*() --- Foundation/include/Poco/URI.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Foundation/include/Poco/URI.h b/Foundation/include/Poco/URI.h index 18a9616e2..66309692b 100644 --- a/Foundation/include/Poco/URI.h +++ b/Foundation/include/Poco/URI.h @@ -163,7 +163,7 @@ public: /// the user-info, host, port components accordingly. const std::string& getPath() const; - /// Returns the path part of the URI. + /// Returns the decoded path part of the URI. void setPath(const std::string& path); /// Sets the path part of the URI. @@ -230,10 +230,10 @@ public: /// Sets the path, query and fragment parts of the URI. std::string getPathEtc() const; - /// Returns the path, query and fragment parts of the URI. + /// Returns the encoded path, query and fragment parts of the URI. std::string getPathAndQuery() const; - /// Returns the path and query parts of the URI. + /// Returns the encoded path and query parts of the URI. void resolve(const std::string& relativeURI); /// Resolves the given relative URI against the base URI.