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: mbed
Fork of el17ajf by
Menus/MenuManager/MenuManager.h
- Committer:
- el17ajf
- Date:
- 2019-04-12
- Revision:
- 28:e09b7ac11dea
- Parent:
- 22:0a474f074553
- Child:
- 37:8da316cf4549
File content as of revision 28:e09b7ac11dea:
#ifndef MENU_MANAGER_H #define MENU_MANAGER_H #include "Menu.h" namespace Menus { namespace MenuManager { void updateAndDraw(); void draw(); int count(); void add(Menu * menu); void close(); void closeAll(); }; }; #endif