60 lines
1.5 KiB
C++
60 lines
1.5 KiB
C++
// EdIRBk.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "Defines.hpp"
|
|
|
|
#ifdef D_ED_IR_ACTIVE
|
|
|
|
#include "EdIRBk.hpp"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// class CPA_EdIR_BreakPoint
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
/****************************************************************************/
|
|
CPA_EdIR_BreakPoint::CPA_EdIR_BreakPoint(long lIndex,CString csBehaviourName)
|
|
{
|
|
m_pstNode =NULL;
|
|
m_lIndex =lIndex;
|
|
m_csBehaviourName =csBehaviourName;
|
|
}
|
|
|
|
/****************************************************************************/
|
|
struct tdstNodeInterpret_ *CPA_EdIR_BreakPoint::m_fn_pstGetNode()
|
|
{
|
|
return m_pstNode;
|
|
}
|
|
|
|
/****************************************************************************/
|
|
long CPA_EdIR_BreakPoint::m_fn_lGetIndex()
|
|
{
|
|
return m_lIndex;
|
|
}
|
|
|
|
/****************************************************************************/
|
|
CString CPA_EdIR_BreakPoint::m_fn_csGetBehaviourName()
|
|
{
|
|
return m_csBehaviourName;
|
|
}
|
|
|
|
/****************************************************************************/
|
|
void CPA_EdIR_BreakPoint::m_fn_vSetNode(struct tdstNodeInterpret_ *pstNode)
|
|
{
|
|
m_pstNode=pstNode;
|
|
}
|
|
|
|
/****************************************************************************/
|
|
void CPA_EdIR_BreakPoint::m_fn_vSetIndex(long lIndex)
|
|
{
|
|
m_lIndex=lIndex;
|
|
}
|
|
|
|
#endif //D_ED_IR_ACTIVE
|