home *** CD-ROM | disk | FTP | other *** search
- // Link.h: interface for the Link class.
- //
- //////////////////////////////////////////////////////////////////////
-
- #if !defined(AFX_LINK_H__6AA926BF_53B6_11D3_A911_00104B9A4FD0__INCLUDED_)
- #define AFX_LINK_H__6AA926BF_53B6_11D3_A911_00104B9A4FD0__INCLUDED_
-
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
-
- class Link
- {
- public:
- BOOL m_InFlag; // flag to remember inbound or outbound
- Link(int ID, void *pData, short size, BOOL InFlag); // constructor with info
- Link(); // default constructor
- virtual ~Link(); // destructor
-
- short m_DataSize; // size of data for this link
- void* m_pData; // pointer to the linked data
- int m_LinkID; // id number of this link
- };
-
- #endif // !defined(AFX_LINK_H__6AA926BF_53B6_11D3_A911_00104B9A4FD0__INCLUDED_)
-