#include "ECUFlasherECUEventArg.hpp"

namespace otx {
	namespace flash {

		ECUFlasherECUEventArg::ECUFlasherECUEventArg(ECUFlasher* sender, ECU* ecu, bool status)
		{
			this->mSender = sender;
			this->mEcu = ecu;
			this->status = status;
		}

		ECUFlasher* ECUFlasherECUEventArg::getSender() {
			return this->mSender;
		}
		ECU* ECUFlasherECUEventArg::getEcu() {
			return this->mEcu;
		}

		bool ECUFlasherECUEventArg::getStatus()
		{
			return this->status;
		}

	} // namespace flash
} // namespace otx