Creating an array of Classes

Dependencies:   mbed

Revision:
0:978160d93f83
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Signal.h	Wed Aug 05 13:41:30 2015 +0000
@@ -0,0 +1,15 @@
+#ifndef SIGNAL_H
+#define SIGNAL_H
+
+#include"mbed.h"
+
+class Signal{
+
+    private:
+        uint32_t Value; 
+    public:
+        void setValue(uint32_t);
+        uint32_t getValue(void);
+};
+
+#endif
\ No newline at end of file