39 lines
700 B
C++
39 lines
700 B
C++
// Res3DDatFileRecord.cpp: implementation of the CRes3DDatFileRecord class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#include "geomative.h"
|
|
#include "Res3DDatFileRecord.h"
|
|
|
|
#ifdef _DEBUG
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[]=__FILE__;
|
|
#define new DEBUG_NEW
|
|
#endif
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Construction/Destruction
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
CRes3DDatFileRecord::CRes3DDatFileRecord()
|
|
{
|
|
m_fAX = 0.0;
|
|
m_fAY = 0.0;
|
|
|
|
m_fBX = 0.0;
|
|
m_fBY = 0.0;
|
|
|
|
m_fMX = 0.0;
|
|
m_fMY = 0.0;
|
|
|
|
m_fNX = 0.0;
|
|
m_fNY = 0.0;
|
|
|
|
m_fR0 = 0.0;
|
|
}
|
|
|
|
CRes3DDatFileRecord::~CRes3DDatFileRecord()
|
|
{
|
|
|
|
}
|