Creating an array of Classes

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Signal.h Source File

Signal.h

00001 #ifndef SIGNAL_H
00002 #define SIGNAL_H
00003 
00004 #include"mbed.h"
00005 
00006 class Signal{
00007 
00008     private:
00009         uint32_t Value; 
00010     public:
00011         void setValue(uint32_t);
00012         uint32_t getValue(void);
00013 };
00014 
00015 #endif