Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef CUPT_DOWNLOAD_METHODFACTORY_SEEN
00019 #define CUPT_DOWNLOAD_METHODFACTORY_SEEN
00020
00022
00023 #include <cupt/fwd.hpp>
00024 #include <cupt/common.hpp>
00025
00026 namespace cupt {
00027
00028 namespace internal {
00029
00030 class MethodFactoryImpl;
00031
00032 }
00033
00034 namespace download {
00035
00037 class CUPT_API MethodFactory
00038 {
00039 internal::MethodFactoryImpl* __impl;
00040 MethodFactory(const MethodFactory&);
00041 MethodFactory& operator=(const MethodFactory);
00042 public:
00044
00047 MethodFactory(const shared_ptr< const Config >& config);
00049 ~MethodFactory();
00051
00054 Method* getDownloadMethodForUri(const Uri& uri) const;
00055 };
00056
00057 }
00058 }
00059
00060 #endif
00061