IPacketDispatcher.cpp 314 B

1234567891011121314151617181920
  1. #include "stdafx.h"
  2. #include "IPacketDispatcher.h"
  3. using namespace DIOS::Dev::Detail::MachineryECOM;
  4. IPacketDispatcher::IPacketDispatcher()
  5. {
  6. }
  7. IPacketDispatcher::~IPacketDispatcher()
  8. {
  9. }
  10. int IPacketDispatcher::Receive(NotifyPacket &packet)
  11. {
  12. DispatchPacket(packet.Data());
  13. return 0;
  14. }