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
Map/Map.h
- Committer:
- Jagang
- Date:
- 2014-10-05
- Revision:
- 13:ae5718ac8511
- Parent:
- 12:235b5545ff41
- Child:
- 39:09c04fd42c94
File content as of revision 13:ae5718ac8511:
#ifndef MAP_H_ #define MAP_H_ #include "Obstacle.h" #include "LinkedList.h" class Map { public: Map(); private: LinkedList<Obstacle*> ll_obstacle; }; #endif