Nicolas Borla / Mbed OS ROME2_Robot_Firmware

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_ */