www.pudn.com > apriori的vc源代码.zip > tzObject.cpp


// tzObject.cpp: implementation of the tzObject class. 
// 
////////////////////////////////////////////////////////////////////// 
#include  
#include "stdafx.h" 
#include "tzObject.h" 
 
////////////////////////////////////////////////////////////////////// 
// Construction/Destruction 
////////////////////////////////////////////////////////////////////// 
 
//*************************************************************************** 
// tzObject::tzObject() 
// 
tzObject::tzObject() 
{ 
} 
 
 
//*************************************************************************** 
// tzObject::~tzObject() 
// 
tzObject::~tzObject() 
{ 
} 
 
 
//*************************************************************************** 
// int tzObject::compare(tzObject *) 
// 
int tzObject::compare(tzObject *) 
{ 
	return 0; 
} 
 
 
//*************************************************************************** 
// tzObject *tzObject::clone() 
// 
tzObject *tzObject::clone() 
{ 
	return new tzObject; 
} 
 
//*************************************************************************** 
// int tzObject::key() 
// 
int tzObject::key() 
{ 
	return -1; 
} 
 
 
//*************************************************************************** 
// int tzObject::key() 
// 
void tzObject::dump() 
{ 
	printf("Dump Object\n"); 
}