1234567891011121314151617181920 |
- #include "stdafx.h"
- #include "IPacketDispatcher.h"
- using namespace DIOS::Dev::Detail::MachineryECOM;
- IPacketDispatcher::IPacketDispatcher()
- {
- }
- IPacketDispatcher::~IPacketDispatcher()
- {
- }
- int IPacketDispatcher::Receive(NotifyPacket &packet)
- {
- DispatchPacket(packet.Data());
- return 0;
- }
|