26 lines
614 B
C++
26 lines
614 B
C++
// DevLinkRecord.h: interface for the CDevLinkRecord class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_DEVLINKRECORD_H__B14E7A5B_3B6D_43D6_A8B7_B93A667A76DF__INCLUDED_)
|
|
#define AFX_DEVLINKRECORD_H__B14E7A5B_3B6D_43D6_A8B7_B93A667A76DF__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
class CDevLinkRecord
|
|
{
|
|
public:
|
|
char aDevSN[128];
|
|
char aDevName[128];
|
|
char aDevModelNO[128];
|
|
|
|
char aDevCom[32];
|
|
CDevLinkRecord();
|
|
virtual ~CDevLinkRecord();
|
|
|
|
};
|
|
|
|
#endif // !defined(AFX_DEVLINKRECORD_H__B14E7A5B_3B6D_43D6_A8B7_B93A667A76DF__INCLUDED_)
|