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-04-06
- Revision:
- 8:92d0c4961a16
- Parent:
- 7:4b283e36b147
- Child:
- 29:95469b25e187
File content as of revision 8:92d0c4961a16:
#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: // CONSTRUCTEURS cCarre(); cCarre(unsigned char x, unsigned char y); // METHODES virtual void rotationHoraire(); }; #endif