00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef MAILTRANSPORT_TRANSPORTTYPE_P_H
00021 #define MAILTRANSPORT_TRANSPORTTYPE_P_H
00022
00023 #include <QtCore/QSharedData>
00024 #include <QtCore/QString>
00025
00026 #include <akonadi/agenttype.h>
00027
00028 namespace MailTransport {
00029
00033 class TransportType::Private : public QSharedData
00034 {
00035 public:
00036 Private()
00037 {
00038 mType = -1;
00039 }
00040
00041 Private( const Private &other )
00042 : QSharedData( other )
00043 {
00044 mType = other.mType;
00045 mName = other.mName;
00046 mDescription = other.mDescription;
00047 mAgentType = other.mAgentType;
00048 }
00049
00050 int mType;
00051 QString mName;
00052 QString mDescription;
00053 Akonadi::AgentType mAgentType;
00054 };
00055
00056 }
00057
00058 #endif //MAILTRANSPORT_TRANSPORTTYPE_P_H