Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Add fake method to test Travis doc
- Loading branch information
|
@@ -68,6 +68,8 @@ Constructor |
|
|
:return: the request method |
|
|
%End |
|
|
|
|
|
bool fake(); |
|
|
|
|
|
QgsServerRequest::Parameters parameters() const; |
|
|
%Docstring |
|
|
Returns a map of query parameters with keys converted |
|
|
|
@@ -90,6 +90,8 @@ class SERVER_EXPORT QgsServerRequest |
|
|
*/ |
|
|
QgsServerRequest::Method method() const; |
|
|
|
|
|
bool fake() { return true; } |
|
|
|
|
|
/** |
|
|
* Returns a map of query parameters with keys converted |
|
|
* to uppercase |
|
|
|
@@ -117,6 +117,8 @@ namespace QgsWfs |
|
|
*/ |
|
|
QString version() const; |
|
|
|
|
|
bool fake() { return true; } |
|
|
|
|
|
/** |
|
|
* Returns VERSION parameter if defined or its default value. |
|
|
* \returns version |
|
|
|
@@ -224,6 +224,8 @@ namespace QgsWms |
|
|
*/ |
|
|
int heightAsInt() const; |
|
|
|
|
|
bool fake() { return true; } |
|
|
|
|
|
/** |
|
|
* Returns VERSION parameter as a string or an empty string if not |
|
|
* defined. |
|
|