?? tzobject.cpp
字號:
// tzObject.cpp: implementation of the tzObject class.
//
//////////////////////////////////////////////////////////////////////
#include <stdio.h>
#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");
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -