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: WIFI_API_32kRAM mbed
RPCObjectManager.h
00001 #ifndef RPCOBJECTMANAGER 00002 #define RPCOBJECTMANAGER 00003 00004 #include <list> 00005 00006 class RPCObjectManager 00007 { 00008 public : 00009 00010 static RPCObjectManager& instance(); 00011 00012 void store_object(char *obj_name); 00013 void remove_object(char *obj_name); 00014 bool lookup_object(char *obj_name); 00015 00016 std::list<char*>::iterator begin(); 00017 std::list<char*>::iterator end(); 00018 00019 bool is_empty(); 00020 00021 private : 00022 00023 RPCObjectManager(); 00024 ~RPCObjectManager(); 00025 00026 std::list<char*> objects; 00027 }; 00028 #endif 00029
Generated on Sun Jul 17 2022 04:29:28 by
1.7.2