www.pudn.com > xianchengchi.rar > WorkItem.cpp


// WorkItem.cpp: implementation of the CWorkItem class. 
// 
////////////////////////////////////////////////////////////////////// 
 
#include "stdafx.h" 
#include "Thread.h" 
#include "WorkItem.h" 
 
#ifdef _DEBUG 
#undef THIS_FILE 
static char THIS_FILE[]=__FILE__; 
#define new DEBUG_NEW 
#endif 
 
////////////////////////////////////////////////////////////////////// 
// Construction/Destruction 
////////////////////////////////////////////////////////////////////// 
 
CWorkItem::CWorkItem() 
{ 
	delwith = false; 
	data = NULL; 
} 
 
CWorkItem::~CWorkItem() 
{ 
 
}