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