mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
82 lines
1.8 KiB
C++
82 lines
1.8 KiB
C++
![]() |
/*
|
||
|
Copyright 2009 Constantin Berzan <exit3219@gmail.com>
|
||
|
|
||
|
This library is free software; you can redistribute it and/or modify it
|
||
|
under the terms of the GNU Library General Public License as published by
|
||
|
the Free Software Foundation; either version 2 of the License, or (at your
|
||
|
option) any later version.
|
||
|
|
||
|
This library is distributed in the hope that it will be useful, but WITHOUT
|
||
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
|
||
|
License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU Library General Public License
|
||
|
along with this library; see the file COPYING.LIB. If not, write to the
|
||
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||
|
02110-1301, USA.
|
||
|
*/
|
||
|
|
||
|
#include "transportattribute.h"
|
||
|
|
||
|
#include "transportmanager.h"
|
||
|
|
||
|
#include <KDebug>
|
||
|
|
||
|
using namespace Akonadi;
|
||
|
using namespace MailTransport;
|
||
|
|
||
|
class TransportAttribute::Private
|
||
|
{
|
||
|
public:
|
||
|
int mId;
|
||
|
};
|
||
|
|
||
|
TransportAttribute::TransportAttribute( int id )
|
||
|
: d( new Private )
|
||
|
{
|
||
|
d->mId = id;
|
||
|
}
|
||
|
|
||
|
TransportAttribute::~TransportAttribute()
|
||
|
{
|
||
|
delete d;
|
||
|
}
|
||
|
|
||
|
TransportAttribute *TransportAttribute::clone() const
|
||
|
{
|
||
|
return new TransportAttribute( d->mId );
|
||
|
}
|
||
|
|
||
|
QByteArray TransportAttribute::type() const
|
||
|
{
|
||
|
static const QByteArray sType( "TransportAttribute" );
|
||
|
return sType;
|
||
|
}
|
||
|
|
||
|
QByteArray TransportAttribute::serialized() const
|
||
|
{
|
||
|
return QByteArray::number( d->mId );
|
||
|
}
|
||
|
|
||
|
void TransportAttribute::deserialize( const QByteArray &data )
|
||
|
{
|
||
|
d->mId = data.toInt();
|
||
|
}
|
||
|
|
||
|
int TransportAttribute::transportId() const
|
||
|
{
|
||
|
return d->mId;
|
||
|
}
|
||
|
|
||
|
Transport *TransportAttribute::transport() const
|
||
|
{
|
||
|
return TransportManager::self()->transportById( d->mId, false );
|
||
|
}
|
||
|
|
||
|
void TransportAttribute::setTransportId( int id )
|
||
|
{
|
||
|
d->mId = id;
|
||
|
}
|
||
|
|