Merge branch 'master' of gitorious.org:opensuse/libzypp
[platform/upstream/libzypp.git] / zypp / repo / RepoMirrorList.h
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9
10 #ifndef ZYPP_REPO_MIRRORLIST_H_
11 #define ZYPP_REPO_MIRRORLIST_H_
12
13 #include <vector>
14 #include "zypp/Url.h"
15
16 namespace zypp
17 {
18   namespace repo
19   {
20     class RepoMirrorList
21     {
22       public:
23         RepoMirrorList( const Url &url );
24         virtual ~RepoMirrorList();
25         
26         std::vector<Url> getUrls() const;
27
28       private:
29         std::vector<Url> urls;
30     };
31
32   } // ns repo
33 } // ns zypp
34
35 #endif
36
37 // vim: set ts=2 sts=2 sw=2 et ai: