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
362 B
26 lines
362 B
15 years ago
|
#include "intid.h"
|
||
|
|
||
|
#include<kdebug.h>
|
||
|
|
||
|
KornIntId::KornIntId(int id) : _id(id)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
KornIntId::KornIntId(const KornIntId& src) : KornMailId(), _id(src._id)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
KornIntId::~KornIntId()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
QString KornIntId::toString() const
|
||
|
{
|
||
|
return QString("KornIntId, Id: ") + QString::number(_id);
|
||
|
}
|
||
|
|
||
|
KornMailId * KornIntId::clone() const
|
||
|
{
|
||
|
return new KornIntId(*this);
|
||
|
}
|