62 lines
1.4 KiB
C++
62 lines
1.4 KiB
C++
// EdIRMac.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "Defines.hpp"
|
|
|
|
#ifdef D_ED_IR_ACTIVE
|
|
|
|
#include "EdIRCst.hpp"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
// class CPA_EdIR_Constant
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
/****************************************************************************/
|
|
CPA_EdIR_Constant::CPA_EdIR_Constant()
|
|
{
|
|
m_csType="";
|
|
m_csName="";
|
|
m_csValue="";
|
|
}
|
|
|
|
/****************************************************************************/
|
|
CPA_EdIR_Constant::CPA_EdIR_Constant(CString csType,CString csName,CString csValue)
|
|
{
|
|
m_csType=csType;
|
|
m_csName=csName;
|
|
m_csValue=csValue;
|
|
}
|
|
|
|
/****************************************************************************/
|
|
CPA_EdIR_Constant::~CPA_EdIR_Constant()
|
|
{
|
|
}
|
|
|
|
/****************************************************************************/
|
|
CString CPA_EdIR_Constant::m_fn_csGetConstantType()
|
|
{
|
|
return m_csType;
|
|
}
|
|
|
|
/****************************************************************************/
|
|
CString CPA_EdIR_Constant::m_fn_csGetConstantName()
|
|
{
|
|
return m_csName;
|
|
}
|
|
|
|
/****************************************************************************/
|
|
CString CPA_EdIR_Constant::m_fn_csGetConstantValue()
|
|
{
|
|
return m_csValue;
|
|
}
|
|
|
|
#endif //D_ED_IR_ACTIVE
|