- Prepare ResPool being a singleton ontop of sat::Pool.
[platform/upstream/libzypp.git] / zypp / solver / detail / ProblemSolutionIgnore.h
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /* Resolver_problems.cc
3  *
4  * Copyright (C) 2000-2002 Ximian, Inc.
5  * Copyright (C) 2005 SUSE Linux Products GmbH
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License,
9  * version 2, as published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19  * 02111-1307, USA.
20  */
21
22 #ifndef ZYPP_SOLVER_DETAIL_PROBLEMSOLUTIONIGNORE_H
23 #define ZYPP_SOLVER_DETAIL_PROBLEMSOLUTIONIGNORE_H
24
25 #include "zypp/solver/detail/Types.h"
26 #include "zypp/ProblemSolution.h"
27
28 /////////////////////////////////////////////////////////////////////////
29 namespace zypp
30 { ///////////////////////////////////////////////////////////////////////
31   ///////////////////////////////////////////////////////////////////////
32   namespace solver
33   { /////////////////////////////////////////////////////////////////////
34     /////////////////////////////////////////////////////////////////////
35     namespace detail
36     { ///////////////////////////////////////////////////////////////////
37
38         /**
39          * Class representing one possible solution to one problem found during resolving
40          * This problem solution ignores one or more items
41          * 
42          **/
43         class ProblemSolutionIgnoreConflicts : public ProblemSolution
44         {
45         public:
46
47             /**
48              * Constructor.
49              **/
50             ProblemSolutionIgnoreConflicts( ResolverProblem_Ptr parent,
51                                             PoolItem item,
52                                             const Capability & capability,
53                                             PoolItem otherItem);
54             ProblemSolutionIgnoreConflicts( ResolverProblem_Ptr parent,
55                                             PoolItem item,
56                                             const Capability & capability,
57                                             PoolItemList itemList);         
58         };
59
60         class ProblemSolutionIgnoreRequires : public ProblemSolution
61         {
62         public:
63
64             /**
65              * Constructor.
66              **/
67             ProblemSolutionIgnoreRequires( ResolverProblem_Ptr parent,
68                                            PoolItem item,
69                                            const Capability & capability);
70             ProblemSolutionIgnoreRequires( ResolverProblem_Ptr parent,
71                                            PoolItemList itemList,
72                                            const Capability & capability);
73         };
74
75         class ProblemSolutionIgnoreArchitecture : public ProblemSolution
76         {
77         public:
78
79             /**
80              * Constructor.
81              **/
82             ProblemSolutionIgnoreArchitecture( ResolverProblem_Ptr parent,
83                                                PoolItem item);
84         };
85
86         class ProblemSolutionIgnoreVendor : public ProblemSolution
87         {
88         public:
89
90             /**
91              * Constructor.
92              **/
93             ProblemSolutionIgnoreVendor( ResolverProblem_Ptr parent,
94                                          PoolItem item);
95         };              
96
97         class ProblemSolutionIgnoreObsoletes : public ProblemSolution
98         {
99         public:
100
101             /**
102              * Constructor.
103              **/
104             ProblemSolutionIgnoreObsoletes( ResolverProblem_Ptr parent,
105                                             PoolItem item,
106                                             const Capability & capability,
107                                             PoolItem otherItem);            
108         };
109
110         class ProblemSolutionIgnoreInstalled : public ProblemSolution
111         {
112         public:
113
114             /**
115              * Constructor.
116              **/
117             ProblemSolutionIgnoreInstalled( ResolverProblem_Ptr parent,
118                                             PoolItem item,
119                                             PoolItem otherItem);  
120         };
121         
122
123       ///////////////////////////////////////////////////////////////////
124     };// namespace detail
125     /////////////////////////////////////////////////////////////////////
126     /////////////////////////////////////////////////////////////////////
127   };// namespace solver
128   ///////////////////////////////////////////////////////////////////////
129   ///////////////////////////////////////////////////////////////////////
130 };// namespace zypp
131 /////////////////////////////////////////////////////////////////////////
132
133 #endif // ZYPP_SOLVER_DETAIL_PROBLEMSOLUTIONIGNORE_H
134