28 lines
585 B
C++
28 lines
585 B
C++
// DevLinkRecord.cpp: implementation of the CDevLinkRecord class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#include "geomative.h"
|
|
#include "DevLinkRecord.h"
|
|
|
|
#ifdef _DEBUG
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[]=__FILE__;
|
|
#define new DEBUG_NEW
|
|
#endif
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Construction/Destruction
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
CDevLinkRecord::CDevLinkRecord()
|
|
{
|
|
memset(aDevSN, 0, 128);
|
|
memset(aDevCom, 0, 32);
|
|
}
|
|
|
|
CDevLinkRecord::~CDevLinkRecord()
|
|
{
|
|
|
|
}
|