#include "keyint.h" CKeyInt::CKeyInt() { m_uiValue = 0; } CKeyInt::~CKeyInt() { m_uiValue = 0; } VOID CKeyInt::Display() const { printf("%ld", m_uiValue); }