
Refactoring and other updates
Dependencies: BLE_API mbed nRF51822
Fork of nRF51822_SimpleChat by
ControllerFactory.hpp
- Committer:
- carbune92
- Date:
- 2017-05-08
- Revision:
- 3:b6e4e5529a52
- Child:
- 5:fca87573ed92
File content as of revision 3:b6e4e5529a52:
#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