summaryrefslogtreecommitdiffstats
path: root/korn/intid.cpp
blob: 060f9c962fc50111392000148780371f73353948 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#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);
}