tzobject.h
来自「关联规则发现vc源代码」· C头文件 代码 · 共 47 行
H
47 行
// tzObject.h: interface for the tzObject class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_TZOBJECT_H__51668446_3CF5_4484_97A5_9FE719791D20__INCLUDED_)
#define AFX_TZOBJECT_H__51668446_3CF5_4484_97A5_9FE719791D20__INCLUDED_
class tzObject
{
public:
//
// Constructor/Destructor
//
tzObject();
virtual ~tzObject();
//
// To ensure a consistent comparison interface and to allow comparison
// of all kinds of different objects, we will define a comparison functions.
//
virtual int compare(tzObject *);
//
// To allow a deep copy of data structures we will define a standard interface...
// This member will return a copy of itself, freshly allocated and deep copied.
//
virtual tzObject *clone();
//
// To generate a key for this object, this will be used in Hash
//
virtual int key();
//
// To print out the content within the object
//
virtual void dump();
protected:
};
#endif // !defined(AFX_TZOBJECT_H__51668446_3CF5_4484_97A5_9FE719791D20__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?