EventHelix.com: CASE Tools; Real-time and Embedded System Design; Object Oriented Design EventStudio 2.0: System Engineering CASE ToolEventStudio 2.5
Sequence diagram based system design and modeling
Home   What's New   EventStudio 2.5   Real-time Mantra   Thought Projects   Contact Us
Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members

DataLink_Layer.cpp

Go to the documentation of this file.
00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 #include "Datalink_Layer.h"
00011 #include "Protocol_Packet.h"
00012 
00018 
00019 Datalink_Layer::Datalink_Layer() : 
00020                     m_transmit_Protocol_Handler(this),
00021                     m_receive_Protocol_Handler(this)
00022 { }
00023 
00030 
00031 void Datalink_Layer::Transmit(Protocol_Packet *p_Packet)
00032 {
00033     m_transmit_Protocol_Handler.Handle_Transmit_Request((Datagram *)p_Packet);
00034 }
00035 
00042 
00043 void Datalink_Layer::Handle_Receive(Protocol_Packet *p_Packet)
00044 {
00045     m_receive_Protocol_Handler.Handle_Received_Packet((Datagram *)p_Packet);
00046 }

Generated on Sun Feb 13 21:30:16 2005 for Object Oriented Design Examples by doxygen 1.3.4
 Home   What's New   EventStudio 2.5   Real-time Mantra   Thought Projects   Contact Us
Copyright © 2000-2005 EventHelix.com Inc. All Rights Reserved.