// CRC.h: interface for the CCRC class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_CRC_H__069CAD47_D1A9_4C1B_92AF_07C9CA3124CB__INCLUDED_) #define AFX_CRC_H__069CAD47_D1A9_4C1B_92AF_07C9CA3124CB__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class CCRC // this class is a part of Cframe class that is added to the end of a frame object(Cframe class). { public: CString str;// an array of characters that shows the CRC of a frame. int size;// length of CRC object = number of characters in "str" variable of this object . CCRC();// the constructor of this object. virtual ~CCRC();// the deconstructor of this object. }; #endif // !defined(AFX_CRC_H__069CAD47_D1A9_4C1B_92AF_07C9CA3124CB__INCLUDED_)