Can anyone help me decipher/read the following code so that I can explain it to myself in simple English? :)
Thanks!
if (Sp->m_RecPairGroupList.CurHead()){
ConvLine* pLine;
more = true; // get it started
while (more) {
pLine = g_pStoreBase->FindMachDst(Sp->m_RecPairGroupList.curData()->Grp);
if (pLine && pLine->IsA(MACHDST)) {
((MachDstLine*)pLine)->SetCanReceivePairedLoads(true);
}
pLine = g_pStoreBase->FindProcDst(Sp->m_RecPairGroupList.curData()->Grp);
if (pLine && pLine->IsA(PROCDST)) {
((ProcDstLine*)pLine)->SetCanReceivePairedLoads(true);
}
more = Sp->m_RecPairGroupList.CurNext();
This code could as easily do nothing as it could re-elect G.W. Bush or insult your grandma. Without further information and the assumption that the names are not intentionally confusing nothing can be said about it.