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:
- clementdoreau
- Date:
- 2016-04-21
- Revision:
- 31:7313366789f2
- Parent:
- 30:c647da947bd9
File content as of revision 31:7313366789f2:
#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( int y, int x); // METHODES virtual void rotationHoraire(); }; #endif