kmail
transportmanager.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef _KMAIL_TRANSPORTMANAGER_H_
00017 #define _KMAIL_TRANSPORTMANAGER_H_
00018
00019 class QStringList;
00020
00021 namespace KMail {
00022
00027 class TransportManager {
00028
00029 public:
00030 TransportManager() {};
00031 virtual ~TransportManager() {};
00032
00034 static QStringList transportNames();
00035
00037 static unsigned int createId();
00038 };
00039
00040 }
00041
00042 #endif // _KMAIL_TRANSPORTMANAGER_H_
|