Example #1
0
double CTableBase::GetDoubleValue(LPCTSTR _szLabel)
{
	CField *pField;
	if(m_mapFields.Lookup(_szLabel, pField))
		return pField->GetDoubleValue();

	ASSERT(FALSE); // NAo encontrou o campo !
	return 0.0;
}