1/*
2 Copyright (c) 2009 Constantin Berzan <exit3219@gmail.com>
3
4 This library is free software; you can redistribute it and/or modify it
5 under the terms of the GNU Library General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or (at your
7 option) any later version.
8
9 This library is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
12 License for more details.
13
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to the
16 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 02110-1301, USA.
18*/
19
20#ifndef MAILTRANSPORT_TRANSPORTTYPE_P_H
21#define MAILTRANSPORT_TRANSPORTTYPE_P_H
22
23#include <QtCore/QSharedData>
24#include <QtCore/QString>
25
26#include <akonadi/agenttype.h>
27
28namespace MailTransport {
29
30/**
31 @internal
32*/
33class TransportType::Private : public QSharedData
34{
35 public:
36 Private()
37 {
38 mType = -1;
39 }
40
41 Private( const Private &other )
42 : QSharedData( other )
43 {
44 mType = other.mType;
45 mName = other.mName;
46 mDescription = other.mDescription;
47 mAgentType = other.mAgentType;
48 }
49
50 int mType;
51 QString mName;
52 QString mDescription;
53 Akonadi::AgentType mAgentType;
54};
55
56} // namespace MailTransport
57
58#endif //MAILTRANSPORT_TRANSPORTTYPE_P_H
59