Commit a34fdda1 authored by garciay's avatar garciay
Browse files

Bug fixed in ItsAutoInterop ports

parent 1235e9dc
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
//=============================================================================
//=============================================================================
namespace LibItsAutoInterop__TestSystem {
namespace ItsAutoInterop__TestSystem {


AdapterControlPort::AdapterControlPort(const char *par_port_name)
AdapterControlPort::AdapterControlPort(const char *par_port_name)
	: AdapterControlPort_BASE(par_port_name)
	: AdapterControlPort_BASE(par_port_name)
+2 −2
Original line number Original line Diff line number Diff line
//=============================================================================
//=============================================================================
#include "LibItsAutoInterop_TestSystem.hh"
#include "ItsAutoInterop_TestSystem.hh"


namespace LibItsAutoInterop__TestSystem {
namespace ItsAutoInterop__TestSystem {


class AdapterControlPort : public AdapterControlPort_BASE {
class AdapterControlPort : public AdapterControlPort_BASE {
public:
public:
+1 −1
Original line number Original line Diff line number Diff line
@@ -68,7 +68,7 @@ void HmiPort::user_stop()


}
}


void HmiPort::outgoing_send(const ItsAutoInterop__TypesAndValues::HmiInitialise& /*send_par*/)
void HmiPort::outgoing_send(const ItsAutoInterop__TypesAndValues::HmiInitialize& /*send_par*/)
{
{


}
}
+1 −1
Original line number Original line Diff line number Diff line
@@ -37,7 +37,7 @@ protected:
	void user_start();
	void user_start();
	void user_stop();
	void user_stop();


	void outgoing_send(const ItsAutoInterop__TypesAndValues::HmiInitialise& send_par);
	void outgoing_send(const ItsAutoInterop__TypesAndValues::HmiInitialize& send_par);
};
};


} /* end of namespace */
} /* end of namespace */
+3 −13
Original line number Original line Diff line number Diff line
//=============================================================================
//=============================================================================
namespace LibItsAutoInterop__TestSystem {
namespace ItsAutoInterop__TestSystem {


UpperTesterPort::UpperTesterPort(const char *par_port_name)
UpperTesterPort::UpperTesterPort(const char *par_port_name)
	: UpperTesterPort_BASE(par_port_name)
	: UpperTesterPort_BASE(par_port_name)
@@ -58,22 +58,12 @@ void UpperTesterPort::user_stop()


}
}


void UpperTesterPort::outgoing_send(const LibItsCommon__TypesAndValues::UtInitialize& /*send_par*/)
void UpperTesterPort::outgoing_send(const LibItsCommon__TypesAndValues::UtInitialize& send_par)
{
{


}
}


void UpperTesterPort::outgoing_send(const LibItsAutoInterop__TypesAndValues::UtCamTrigger& /*send_par*/)
void UpperTesterPort::outgoing_send(const ItsAutoInterop__TypesAndValues::UtAutoInteropTrigger& send_par)
{

}

void UpperTesterPort::outgoing_send(const LibItsCommon__TypesAndValues::UtActivatePositionTime& /*send_par*/)
{

}

void UpperTesterPort::outgoing_send(const LibItsCommon__TypesAndValues::UtDeactivatePositionTime& /*send_par*/)
{
{


}
}
Loading