- Create the cache directly from the schema (installed) file.
[platform/upstream/libzypp.git] / zypp / source / susetags / SUSETagsDownloader.h
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9
10 #ifndef ZYPP_SOURCE_SUSETAGS_DOWNLOADER
11 #define ZYPP_SOURCE_SUSETAGS_DOWNLOADER
12
13 #include "zypp/Url.h"
14 #include "zypp/Pathname.h"
15
16 namespace zypp
17 {
18   namespace source
19   {
20     namespace susetags
21     {
22   
23       class SUSETagsDownloader
24       {
25        public:
26         SUSETagsDownloader( const Url &url, const Pathname &path );
27         void download( const Pathname &dest_dir );
28        private:
29         Url _url;
30         Pathname _path;
31       };
32
33     } // ns susetags
34   } // ns source
35 } // ns zypp
36
37 #endif