summaryrefslogtreecommitdiff
path: root/swig/Repository.i
blob: 58b7bbaec1c1f01c40b77ccdf42c1245dcba9cc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

class Repository : private base::SafeBool<Repository>
{
public:
    Repository();
    static const Repository noRepository;

    typedef unsigned long NumericId;
    NumericId numericId() const;
    const ResStore & resolvables();
    const RepoInfo info() const;
    const std::list<packagedelta::PatchRpm> & patchRpms() const;
    const std::list<packagedelta::DeltaRpm> & deltaRpms() const;
};