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.
Fork of HTTP-Server by
RPCType.h
- Committer:
- webOnBoard
- Date:
- 2015-10-07
- Revision:
- 11:d03f12a19999
- Parent:
- 0:9e4bcb10b3e3
File content as of revision 11:d03f12a19999:
#ifndef RPCTYPE_H #define RPCTYPE_H #include <list> class RPCType { public : static RPCType& instance(); void register_types(); bool is_supported_type(char *type); private : RPCType(); std::list<char*> supported_types; }; #endif