// Header.h: interface for the CHeader class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_HEADER_H__0E8B66D3_6E37_4EDD_8489_A117A23B199B__INCLUDED_) #define AFX_HEADER_H__0E8B66D3_6E37_4EDD_8489_A117A23B199B__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class CHeader // this class is a part of Cframe class and include the properties of the header of a transmitter or received frame. { public: CString str;// an array of characters of this header object. int size;// length of this header object = number of characters in this object. CHeader();// the constructor of this object virtual ~CHeader();// the deconstructor of this object. }; #endif // !defined(AFX_HEADER_H__0E8B66D3_6E37_4EDD_8489_A117A23B199B__INCLUDED_)