Refactoring and other updates

Dependencies:   BLE_API mbed nRF51822

Fork of nRF51822_SimpleChat by Cristi Stoican

ControllerFactory.hpp

Committer:
carbune92
Date:
2017-05-08
Revision:
5:fca87573ed92
Parent:
3:b6e4e5529a52

File content as of revision 5:fca87573ed92:

#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