Refactoring and other updates

Dependencies:   BLE_API mbed nRF51822

Fork of nRF51822_SimpleChat by Cristi Stoican

ControllerFactory.hpp

Committer:
carbune92
Date:
2017-05-10
Revision:
7:806b08205b25
Parent:
5:fca87573ed92

File content as of revision 7:806b08205b25:

#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