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.
Dependencies: EthernetInterface mbed-rpc mbed-rtos mbed
RPCObjectManager.h
- Committer:
- feb11
- Date:
- 2013-07-17
- Revision:
- 3:fb0a778f2480
- Parent:
- 0:9e4bcb10b3e3
File content as of revision 3:fb0a778f2480:
#ifndef RPCOBJECTMANAGER
#define RPCOBJECTMANAGER
#include <list>
class RPCObjectManager
{
public :
static RPCObjectManager& instance();
void store_object(char *obj_name);
void remove_object(char *obj_name);
bool lookup_object(char *obj_name);
std::list<char*>::iterator begin();
std::list<char*>::iterator end();
bool is_empty();
private :
RPCObjectManager();
~RPCObjectManager();
std::list<char*> objects;
};
#endif