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

Committer:
ansond
Date:
Fri Mar 28 17:49:10 2014 +0000
Revision:
135:7f3f963cd159
Parent:
134:58e7537a8c5f
Child:
192:54b758a8eaaa
updates

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ansond 134:58e7537a8c5f 1 /* Copyright C2013 Doug Anson, MIT License
ansond 134:58e7537a8c5f 2 *
ansond 134:58e7537a8c5f 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
ansond 134:58e7537a8c5f 4 * and associated documentation files the "Software", to deal in the Software without restriction,
ansond 134:58e7537a8c5f 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
ansond 134:58e7537a8c5f 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
ansond 134:58e7537a8c5f 7 * furnished to do so, subject to the following conditions:
ansond 134:58e7537a8c5f 8 *
ansond 134:58e7537a8c5f 9 * The above copyright notice and this permission notice shall be included in all copies or
ansond 134:58e7537a8c5f 10 * substantial portions of the Software.
ansond 134:58e7537a8c5f 11 *
ansond 134:58e7537a8c5f 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
ansond 134:58e7537a8c5f 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
ansond 134:58e7537a8c5f 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
ansond 134:58e7537a8c5f 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
ansond 134:58e7537a8c5f 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
ansond 134:58e7537a8c5f 17 */
ansond 134:58e7537a8c5f 18
ansond 134:58e7537a8c5f 19 #ifndef _BASECLASS_H_
ansond 134:58e7537a8c5f 20 #define _BASECLASS_H_
ansond 134:58e7537a8c5f 21
ansond 134:58e7537a8c5f 22 // ErrorHandler Support
ansond 134:58e7537a8c5f 23 #include "ErrorHandler.h"
ansond 134:58e7537a8c5f 24
ansond 134:58e7537a8c5f 25 class BaseClass {
ansond 134:58e7537a8c5f 26 private:
ansond 134:58e7537a8c5f 27 ErrorHandler *m_error_handler;
ansond 134:58e7537a8c5f 28 void *m_endpoint;
ansond 134:58e7537a8c5f 29
ansond 134:58e7537a8c5f 30 public:
ansond 134:58e7537a8c5f 31 BaseClass(ErrorHandler *error_handler,void *endpoint);
ansond 134:58e7537a8c5f 32 virtual ~BaseClass();
ansond 134:58e7537a8c5f 33
ansond 135:7f3f963cd159 34 ErrorHandler *logger();
ansond 135:7f3f963cd159 35
ansond 134:58e7537a8c5f 36 protected:
ansond 135:7f3f963cd159 37 void *getEndpoint();
ansond 135:7f3f963cd159 38 void setEndpoint(void *endpoint);
ansond 135:7f3f963cd159 39 int min(int value1, int value2);
ansond 134:58e7537a8c5f 40 };
ansond 134:58e7537a8c5f 41
ansond 134:58e7537a8c5f 42 #endif // _BASECLASS_H_