Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
HTTPScript.cpp
- Committer:
- oehlemar
- Date:
- 2020-04-28
- Revision:
- 0:893a1e710078
File content as of revision 0:893a1e710078:
/*
* HTTPScript.cpp
* Copyright (c) 2020, ZHAW
* All rights reserved.
*/
#include "HTTPScript.h"
using namespace std;
HTTPScript::HTTPScript() {}
HTTPScript::~HTTPScript() {}
/**
* This method must be implemented by derived classes.
* It gets called by the http server, when an object of this class is
* registered with the server, and the corresponding script is called
* by an http client.
* @param names a vector of the names of arguments passed to the server by
* the client with a URL.
* @param values a vector of the corresponding values of arguments passed
* to the server.
*/
string HTTPScript::call(vector<string> names, vector<string> values) {
return "";
}