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.
IndexScript.h
- Committer:
- boro
- Date:
- 2021-03-09
- Revision:
- 3:6fe17b8a6d62
- Parent:
- 0:4beb2ea291ec
File content as of revision 3:6fe17b8a6d62:
/*
* IndexScript.h
* Copyright (c) 2017, ZHAW
* All rights reserved.
*
* Created on: 07.07.2017
* Author: Marcel Honegger
*/
#ifndef INDEX_SCRIPT_H_
#define INDEX_SCRIPT_H_
#include <string>
#include <vector>
#include <mbed.h>
#include "HTTPScript.h"
using namespace std;
/**
* This is an application specific implementation of the http script.
*/
class IndexScript : public HTTPScript {
public:
IndexScript();
virtual ~IndexScript();
virtual string call(vector<string> names, vector<string> values);
};
#endif /* INDEX_SCRIPT_H_ */