コード例 #1
0
ファイル: Job.cpp プロジェクト: blueskyll/condor
void Job::GetSummary ( ClassAd& _ad) const
{
    //same thing as full ad
    if (m_live_job) {
        _ad.CopyFrom(*m_live_job->GetSummary());
    }
    else {
        m_history_job->GetSummary(_ad);
    }
}