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 APDS_9960 mbed-rtos
include/cCarre.h
- Committer:
- Willheisen
- Date:
- 2016-03-30
- Revision:
- 3:493dd1cf30a4
- Parent:
- 2:b3f4a37a2687
- Child:
- 7:4b283e36b147
File content as of revision 3:493dd1cf30a4:
#ifndef CCARRE_H #define CCARRE_H #include "cForme.h" // Classe Carré, fille de Forme, représentant un carré dans la matrice class cCarre : public cForme { private: public: cCarre(); cCarre(unsigned char x, unsigned char y); //void afficherForme(); }; #endif