Core Base Classes for the Light Endpoints

Dependencies:   BufferedSerial

Dependents:   mbed_mqtt_endpoint_ublox_ethernet mbed_mqtt_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_ethernet ... more

Revision:
135:7f3f963cd159
Parent:
9:90fadae5489a
Child:
192:54b758a8eaaa
--- a/Action.h	Fri Mar 28 16:24:12 2014 +0000
+++ b/Action.h	Fri Mar 28 17:49:10 2014 +0000
@@ -19,18 +19,13 @@
 #ifndef _ACTION_H_
 #define _ACTION_H_
 
-// Event handler support
-#include "ErrorHandler.h"
+// Base class support
+#include "BaseClass.h"
 
-class Action {
-    private:
-        ErrorHandler *m_error_handler;
-    
+class Action : public BaseClass {    
     public:
         Action(ErrorHandler *error_handler);
         virtual ~Action();
-        
-        ErrorHandler *logger();
  };
 
 #endif // _ACTION_H_
\ No newline at end of file