Exemplo n.º 1
0
void CSubscriberData::clearFloatSignalCallback(const std_msgs::UInt8::ConstPtr& options)
{
	if (options->data==0)
		simClearFloatSignal(auxStr.c_str());
	else
		simClearFloatSignal(NULL);
}
Exemplo n.º 2
0
void CSubscriberData::clearFloatSignalCallback(const std_msgs::UInt8::ConstPtr& options)
{
	if (_handleGeneralCallback_before())
	{
		if (options->data==0)
			simClearFloatSignal(auxStr.c_str());
		else
			simClearFloatSignal(NULL);
		_handleGeneralCallback_after();
	}
}