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
Diff: include/cMatrice.h
- Revision:
- 6:0e6c1cccb275
- Parent:
- 3:493dd1cf30a4
--- a/include/cMatrice.h Wed Mar 30 10:22:07 2016 +0000
+++ b/include/cMatrice.h Thu Mar 31 07:28:11 2016 +0000
@@ -14,7 +14,7 @@
{
private:
unsigned char** _matrice;
- //unsigned char _matrice [8][8];
+ std::vector<cForme> _formes;
protected:
public:
// CONSTRUCTEUR
@@ -24,9 +24,13 @@
// GETTER
unsigned char **getMatrice();
// SETTER
- void updateMatrice(cForme &);
+
// METHODES
void envoyerMatrice();
+ void afficherForme(cForme &, unsigned char c);
+ void ajouterForme(cForme &);
+ void supprimerForme(cForme & f);
+ void clear();
};
#endif // CMATRICE_H