27 lines
508 B
C++
27 lines
508 B
C++
// Electrode.cpp: implementation of the CElectrode class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#include "geomative.h"
|
|
#include "Electrode.h"
|
|
|
|
#ifdef _DEBUG
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[]=__FILE__;
|
|
#define new DEBUG_NEW
|
|
#endif
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Construction/Destruction
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
CElectrode::CElectrode()
|
|
{
|
|
|
|
}
|
|
|
|
CElectrode::~CElectrode()
|
|
{
|
|
|
|
}
|