Refactoring and other updates
Dependencies: BLE_API mbed nRF51822
Fork of nRF51822_SimpleChat by
Diff: ControllerFactory.hpp
- Revision:
- 3:b6e4e5529a52
- Child:
- 5:fca87573ed92
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ControllerFactory.hpp Mon May 08 13:05:45 2017 +0000 @@ -0,0 +1,16 @@ +#ifndef CONTROLLERFACTORY_H +#define CONTROLLERFACTORY_H + +#include "PIDController.hpp" +#include "RSTController.hpp" // to be decommented after correcting +#include "CmdEnums.hpp" + +//typedef char uint8_t; //only for compiling + +class ControllerFactory { + public: + void createController (Controller**, SysObjTypes&); + void createControllerParams (ControllerParams&, SysObjTypes&, uint8_t*, int); +}; + +#endif