HDLC-Daemon
HdlcdPacket.h
Go to the documentation of this file.
1 
39 #ifndef HDLCD_PACKET_H
40 #define HDLCD_PACKET_H
41 
42 #include "Frame.h"
43 
50 typedef enum {
55 
56 
57 
64 class HdlcdPacket: public Frame {
65 public:
67 };
68 
69 #endif // HDLCD_PACKET_H
Class HdlcdPacket.
Definition: HdlcdPacket.h:64
E_HDLCD_PACKET
The enum E_HDLCD_PACKET to specify all possible HDLCd packet types.
Definition: HdlcdPacket.h:50
A control packet of the HDLCd access protocol.
Definition: HdlcdPacket.h:52
This file contains the header declaration of class Frame.
A data packet of the HDLCd access protocol.
Definition: HdlcdPacket.h:51
virtual E_HDLCD_PACKET GetHdlcdPacketType() const
Definition: HdlcdPacket.h:66
Unknown packet type.
Definition: HdlcdPacket.h:53
Class Frame.
Definition: Frame.h:59