You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
365 B
26 lines
365 B
#include "intid.h"
|
|
|
|
#include<kdebug.h>
|
|
|
|
KornIntId::KornIntId(int id) : _id(id)
|
|
{
|
|
}
|
|
|
|
KornIntId::KornIntId(const KornIntId& src) : KornMailId(), _id(src._id)
|
|
{
|
|
}
|
|
|
|
KornIntId::~KornIntId()
|
|
{
|
|
}
|
|
|
|
TQString KornIntId::toString() const
|
|
{
|
|
return TQString("KornIntId, Id: ") + TQString::number(_id);
|
|
}
|
|
|
|
KornMailId * KornIntId::clone() const
|
|
{
|
|
return new KornIntId(*this);
|
|
}
|