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:
- 1:ab5f440f4156
- Child:
- 3:493dd1cf30a4
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/include/cMatrice.h Wed Mar 30 08:53:18 2016 +0000
@@ -0,0 +1,32 @@
+#ifndef CMATRICE_H
+#define CMATRICE_H
+
+#include "cForme.h"
+#include <vector>
+#include "mbed.h"
+
+
+
+
+// Déclaration de la classe Matrice
+
+class cMatrice
+{
+private:
+ unsigned char** _matrice;
+
+protected:
+public:
+// CONSTRUCTEUR
+ cMatrice();
+ virtual ~cMatrice();
+
+// GETTER
+ unsigned char **getMatrice();
+// SETTER
+ void updateMatrice(cForme &);
+// METHODES
+ void envoyerMatrice();
+};
+
+#endif // CMATRICE_H