Marco Oehler
/
Lab5
HTTPScript.h
- Committer:
- oehlemar
- Date:
- 2020-04-28
- Revision:
- 0:893a1e710078
File content as of revision 0:893a1e710078:
/* * HTTPScript.h * Copyright (c) 2020, ZHAW * All rights reserved. */ #ifndef HTTP_SCRIPT_H_ #define HTTP_SCRIPT_H_ #include <string> #include <vector> /** * This is the abstract http script superclass that needs to be derived * by application specific http scripts. * @see HTTPServer */ class HTTPScript { public: HTTPScript(); virtual ~HTTPScript(); virtual std::string call(std::vector<std::string> names, std::vector<std::string> values); }; #endif /* HTTP_SCRIPT_H_ */